##// END OF EJS Templates
markdown: use hardbreaks to be consistent with previous behaviour of markdown generated content
super-admin -
r5117:07735eab default
parent child Browse files
Show More
@@ -198,7 +198,7 b' def get_markdown_renderer_flavored(exten'
198 198
199 199 class GFM(object):
200 200 def convert(self, source):
201 with pycmarkgfm.parse_gfm(source) as document:
201 with pycmarkgfm.parse_gfm(source, options=pycmarkgfm.options.hardbreaks) as document:
202 202 parsed_md = document.to_commonmark()
203 203 return md.convert(parsed_md)
204 204
General Comments 0
You need to be logged in to leave comments. Login now