mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Enable Markdown Extra by default.
This commit is contained in:
parent
eee004cdb5
commit
6ac802bcf1
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ class MarkdownReader(Reader):
|
|||
def read(self, filename):
|
||||
"""Parse content and metadata of markdown files"""
|
||||
text = open(filename)
|
||||
md = Markdown(extensions = ['meta', 'codehilite'])
|
||||
md = Markdown(extensions = ['meta', 'codehilite', 'extra'])
|
||||
content = md.convert(text)
|
||||
|
||||
metadata = {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue