mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Merge pull request #138 from joedicastro/master
Enable Markdown Extra by default in Pelican.
This commit is contained in:
commit
3d6bf828fd
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