diff options
Diffstat (limited to 'filters')
-rwxr-xr-x | filters/html-converters/md2html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/filters/html-converters/md2html b/filters/html-converters/md2html index 1488f48..67141ba 100755 --- a/filters/html-converters/md2html +++ b/filters/html-converters/md2html | |||
@@ -1,6 +1,5 @@ | |||
1 | #!/usr/bin/env python | 1 | #!/usr/bin/env python |
2 | import markdown | 2 | import markdown |
3 | import sys | ||
4 | print(''' | 3 | print(''' |
5 | <style> | 4 | <style> |
6 | .markdown-body { | 5 | .markdown-body { |
@@ -282,5 +281,5 @@ print(''' | |||
282 | ''') | 281 | ''') |
283 | print("<div class='markdown-body'>") | 282 | print("<div class='markdown-body'>") |
284 | # Note: you may want to run this through bleach for sanitization | 283 | # Note: you may want to run this through bleach for sanitization |
285 | markdown.markdownFromFile(input=sys.stdin, output_format="html5") | 284 | markdown.markdownFromFile(output_format="html5") |
286 | print("</div>") | 285 | print("</div>") |