You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When documenting CLI, one can choose to document all the commands in a single file, or to split the documentation to multiple files by subgroups.
Right now, if I want to document only the subcommand I need to specify the subcommand as my command in the block. However, in that way the parent command isn't shown in the command path. This might cause some confusion
Example
consider that I have a group named my_cli and a subcommands my_sub1 and my_sub2 and I want to document only my_sub1.
I really support this idea.
I experience the same problem. I have one CLI main group and different sub groups sub_group1, sub_group2 etc. Each sub groups have different commands.
I would like to reference every sub_group in a different page, and maybe even every command in a different page. But I cant because otherwise I won't have the full command path.
This subcommand feature would be very usefull to split its CLI documentation into several pages while keeping the full path. And this should still be possible if we have several group nesting.
I think the main issue here that there must be a way to document a subcommand with full command path.
In that way the user will have more control over how to divide the documentation into files and stuff.
Since click doesn't support a way to get the group of a command in its API, one must get the full command path by invoking the group and descend in the group until reaching the subcommand.
Description
When documenting CLI, one can choose to document all the commands in a single file, or to split the documentation to multiple files by subgroups.
Right now, if I want to document only the subcommand I need to specify the subcommand as my command in the block. However, in that way the parent command isn't shown in the command path. This might cause some confusion
Example
consider that I have a group named
my_cli
and a subcommandsmy_sub1
andmy_sub2
and I want to document onlymy_sub1
.If I write:
The path printed is
my_sub1 [OPTIONS] COMMAND
and not the entire pathmy_cli my_sub1 [OPTIONS] COMMAND
.The only way is to write:
And to document everything in the same file.
The Desired Ability
One should be able to specify which subcommands to display, not just depth. that means that the block should look like:
The text was updated successfully, but these errors were encountered: