Describe pymarkdown extensions
This commit is contained in:
parent
b686140ad3
commit
63893b0f2e
11
build.py
11
build.py
|
@ -20,7 +20,16 @@ def main():
|
|||
src = pathlib.Path("src")
|
||||
out = pathlib.Path(args.out)
|
||||
|
||||
md = markdown.Markdown(extensions=["attr_list", "footnotes", "md_in_html", "meta"])
|
||||
md = markdown.Markdown(extensions=[
|
||||
# Set HTML attributes with {#id}
|
||||
"attr_list",
|
||||
# Footnotes [^1]
|
||||
"footnotes",
|
||||
# Parse markdown within HTML[markdown] blocks
|
||||
"md_in_html",
|
||||
# "YAML" frontmatter metadata
|
||||
"meta",
|
||||
])
|
||||
comment_md = markdown.Markdown()
|
||||
|
||||
# Map of feed url -> FeedGenerator object
|
||||
|
|
Loading…
Reference in New Issue