mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Set the Markdown output format to html5 by default
This commit is contained in:
parent
114e64dcf7
commit
a80a707321
2 changed files with 3 additions and 2 deletions
|
|
@ -121,9 +121,9 @@ Setting name (followed by default value, if any)
|
||||||
for a complete list of supported options.
|
for a complete list of supported options.
|
||||||
The ``extensions`` option will be automatically computed from the
|
The ``extensions`` option will be automatically computed from the
|
||||||
``extension_configs`` option.
|
``extension_configs`` option.
|
||||||
Default is ``'extension_configs': {'markdown.extensions.codehilite':
|
Default is ``{'extension_configs': {'markdown.extensions.codehilite':
|
||||||
{'css_class': 'highlight'},'markdown.extensions.extra': {},
|
{'css_class': 'highlight'},'markdown.extensions.extra': {},
|
||||||
'markdown.extensions.meta': {},},``.
|
'markdown.extensions.meta': {},}, 'output_format': 'html5',}``.
|
||||||
``OUTPUT_PATH = 'output/'`` Where to output the generated files.
|
``OUTPUT_PATH = 'output/'`` Where to output the generated files.
|
||||||
``PATH`` Path to content directory to be processed by Pelican. If undefined,
|
``PATH`` Path to content directory to be processed by Pelican. If undefined,
|
||||||
and content path is not specified via an argument to the ``pelican``
|
and content path is not specified via an argument to the ``pelican``
|
||||||
|
|
|
||||||
|
|
@ -107,6 +107,7 @@ DEFAULT_CONFIG = {
|
||||||
'markdown.extensions.extra': {},
|
'markdown.extensions.extra': {},
|
||||||
'markdown.extensions.meta': {},
|
'markdown.extensions.meta': {},
|
||||||
},
|
},
|
||||||
|
'output_format': 'html5',
|
||||||
},
|
},
|
||||||
'JINJA_EXTENSIONS': [],
|
'JINJA_EXTENSIONS': [],
|
||||||
'JINJA_FILTERS': {},
|
'JINJA_FILTERS': {},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue