diff options
Diffstat (limited to 'pelicanconf.py')
-rw-r--r-- | pelicanconf.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pelicanconf.py b/pelicanconf.py index be2539b..15a6160 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -19,6 +19,9 @@ MARKDOWN = { }, 'output_format': 'html5', } +# Fix issue with < and > characters (among others) being double-escaped +# Bug report in markdown/extensions/codehilite.py → https://github.com/Python-Markdown/markdown/pull/726/files + PATH = 'content' PLUGIN_PATHS = ['plugins'] PLUGINS = ['another_read_more_link', 'i18n_subsites', 'neighbors', 'pelican-css', 'pelican-js', 'sitemap', 'tag-cloud', 'tipue-search'] |