Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acd42df commit 51ddcf7Copy full SHA for 51ddcf7
1 file changed
src/mako/cli/docs/commands.yml.mako
@@ -0,0 +1,16 @@
1
+<%namespace name="util" file="../../lib/util.mako"/>\
2
+<%
3
+ from util import (hash_comment, new_context)
4
+ from cli import (subcommand_md_filename, SPLIT_START, SPLIT_END)
5
+
6
+ c = new_context(schemas, resources, context.get('methods'))
7
+%>\
8
+% for resource in sorted(c.rta_map.keys()):
9
+% for method in sorted(c.rta_map[resource]):
10
+${SPLIT_START} ${subcommand_md_filename(resource, method)}
11
+${resource.upper()} DOCS
12
13
+${method.upper()}
14
+${SPLIT_END}
15
+% endfor # each method
16
+% endfor # each resource
0 commit comments