1
0
Fork 0
forked from github/pelican

BUG: Typogrify not applied to pages.

This commit is contained in:
epatters 2012-09-08 21:39:10 -07:00
commit 1da88a647a

View file

@ -378,7 +378,7 @@ class PagesGenerator(Generator):
os.path.join(self.path, self.settings['PAGE_DIR']),
exclude=self.settings['PAGE_EXCLUDES']):
try:
content, metadata = read_file(f)
content, metadata = read_file(f, settings=self.settings)
except Exception, e:
logger.warning(u'Could not process %s\n%s' % (f, str(e)))
continue