-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow using full command paths in headers (#36)
* Allow using full command paths in headers * Reduce diff * Format
- Loading branch information
Florimond Manca
authored
Feb 19, 2021
1 parent
7b50e5d
commit edf0b7f
Showing
6 changed files
with
175 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,5 @@ theme: readthedocs | |
docs_dir: example | ||
|
||
markdown_extensions: | ||
- attr_list | ||
- mkdocs-click |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# cli { #cli data-toc-label="cli" } | ||
|
||
Main entrypoint for this dummy program | ||
|
||
**Usage:** | ||
|
||
``` | ||
cli [OPTIONS] COMMAND [ARGS]... | ||
``` | ||
|
||
**Options:** | ||
|
||
``` | ||
--help Show this message and exit. | ||
``` | ||
|
||
## cli bar { #cli-bar data-toc-label="bar" } | ||
|
||
The bar command | ||
|
||
**Usage:** | ||
|
||
``` | ||
cli bar [OPTIONS] COMMAND [ARGS]... | ||
``` | ||
|
||
**Options:** | ||
|
||
``` | ||
--help Show this message and exit. | ||
``` | ||
|
||
### cli bar hello { #cli-bar-hello data-toc-label="hello" } | ||
|
||
Simple program that greets NAME for a total of COUNT times. | ||
|
||
**Usage:** | ||
|
||
``` | ||
cli bar hello [OPTIONS] | ||
``` | ||
|
||
**Options:** | ||
|
||
``` | ||
--count INTEGER Number of greetings. | ||
--name TEXT The person to greet. | ||
--help Show this message and exit. | ||
``` | ||
|
||
## cli foo { #cli-foo data-toc-label="foo" } | ||
|
||
**Usage:** | ||
|
||
``` | ||
cli foo [OPTIONS] | ||
``` | ||
|
||
**Options:** | ||
|
||
``` | ||
--help Show this message and exit. | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters