Lines Matching full:markdown
7 """Reads, parses, and (optionally) writes as HTML the contents of Markdown
9 stored as Markdown in the source tree to a human-readable format."""
24 # so "import markdown" can find it in src/third_party/markdown.
29 import markdown
58 # Markdown files, perhaps?
64 """Processes a list of Markdown documentation files.
68 not specified, simply ensures the files exist and contain valid Markdown.
72 Markdown files to parse and possibly render.
75 output_pathname: The output directory into which rendered Markdown files
77 extensions: a list of Markdown.extensions to apply if any.
90 markdown_parser = markdown.Markdown(extensions)
92 markdown_parser = markdown.Markdown()
108 description='Parse and render Markdown documentation')
110 help="Input path for Markdown; required only if output_path set")
116 extensions = ['markdown.extensions.def_list']