36 lines
866 B
INI
36 lines
866 B
INI
|
|
||
|
|
||
|
[markdown]
|
||
|
# Define the configuration of python-markdown.
|
||
|
# Reference: https://python-markdown.github.io/reference/#markdown
|
||
|
|
||
|
#output_format = xhtml1
|
||
|
#tab_length = 4
|
||
|
#safe_mode = False
|
||
|
#enable_attributes = True
|
||
|
#smart_emphasis = True
|
||
|
#lazy_ol = True
|
||
|
|
||
|
[extensions]
|
||
|
# List extensions to be enabled.
|
||
|
markdown.extensions.extra = 1
|
||
|
markdown.extensions.admonition = 1
|
||
|
markdown.extensions.codehilite = 1
|
||
|
markdown.extensions.meta = 1
|
||
|
markdown.extensions.nl2br = 1
|
||
|
markdown.extensions.sane_lists = 1
|
||
|
markdown.extensions.smarty = 1
|
||
|
markdown.extensions.toc = 1
|
||
|
markdown.extensions.wikilinks = 1
|
||
|
|
||
|
[markdown.extensions.codehilite]
|
||
|
# Specific configuration for an extension.
|
||
|
# Reference: https://python-markdown.github.io/extensions/code_hilite/#usage
|
||
|
linenums = True
|
||
|
#guess_lang = True
|
||
|
#css_class = codehilite
|
||
|
#pygments_style = default
|
||
|
#noclasses = False
|
||
|
#use_pygments = True
|
||
|
|