1
0
Fork 0
forked from github/pelican
This commit is contained in:
Alexis Metaireau 2011-08-11 22:42:20 +02:00
commit c73ae02170

View file

@ -104,7 +104,7 @@ class MarkdownReader(Reader):
def read(self, filename):
"""Parse content and metadata of markdown files"""
text = open(filename)
md = Markdown(extensions=set(self.extensions+['meta']))
md = Markdown(extensions=set(self.extensions + ['meta']))
content = md.convert(text)
metadata = {}