Render module member summary if member docs are on different pages #224
-
I have a module with a bunch of classes. I would like to have a separate page for each class with the respective docs. Additionally, I'd like to have a overview page for the module with a summary of the classes. I can generate the ref pages with a script. However, I can't get
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
There's no solution yet, and that's something that bothers me too. The summary features is currently based on selected members (
Something like: ::: path.to.object
options:
summary: public
# or with each kind
# attributes: public
# functions: public
# classes: public
# modules: public (maybe it should then use ::: path.to.object
options:
summary:
- member1
- member2
- ... |
Beta Was this translation helpful? Give feedback.
There's no solution yet, and that's something that bothers me too. The summary features is currently based on selected members (
members
,filters
options, etc.), but ideally it would have two additional modes:Something like:
(maybe it should then use
selected
as value instead oftrue
for the current behavior)