Add --no-wrap option to pandoc, fixing issue with long links names (another fix for issue #314)

This commit is contained in:
Aaron Kavlie 2012-04-18 00:24:52 -07:00
commit 9491bb40d4

View file

@ -232,7 +232,7 @@ def fields2pelican(fields, out_markup, output_path, dircat=False):
fp.write(content)
cmd = 'pandoc --normalize --reference-links --from=html --to={0} -o "{1}" "{2}"'.format(
cmd = 'pandoc --normalize --no-wrap --reference-links --from=html --to={0} -o "{1}" "{2}"'.format(
out_markup, out_filename, html_filename)
try: