use pelican_open in order to read the file

This commit is contained in:
liob 2014-03-30 16:02:53 +02:00
parent f907f764c9
commit ebb2fdf663

View File

@ -1,25 +1,26 @@
import os
from datetime import datetime
from pelican import signals
from pelican.readers import BaseReader
from pelican.utils import pelican_open
import pypandoc
class NewReader(BaseReader):
enabled = True
file_extensions = ['md', 'markdown', 'mkd', 'mdown']
def read(self, filename):
with open(filename) as file:
with pelican_open(filename) as text:
metadata_items = []
in_content = False
MD = ''
for line in file.readlines():
for line in text.splitlines():
splitted = line.split(':', 1)
if len(splitted) == 2 and not in_content:
metadata_items.append(splitted)
else:
in_content = True
MD += line
MD += line + '\n'
metadata = {}
for item in metadata_items: