diff options
Diffstat (limited to 'filters')
-rwxr-xr-x | filters/html-converters/md2html | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/filters/html-converters/md2html b/filters/html-converters/md2html index 138713d..1488f48 100755 --- a/filters/html-converters/md2html +++ b/filters/html-converters/md2html | |||
@@ -1,5 +1,7 @@ | |||
1 | #!/bin/sh | 1 | #!/usr/bin/env python |
2 | cat <<_EOF | 2 | import markdown |
3 | import sys | ||
4 | print(''' | ||
3 | <style> | 5 | <style> |
4 | .markdown-body { | 6 | .markdown-body { |
5 | font-size: 14px; | 7 | font-size: 14px; |
@@ -277,7 +279,8 @@ cat <<_EOF | |||
277 | border: none; | 279 | border: none; |
278 | } | 280 | } |
279 | </style> | 281 | </style> |
280 | _EOF | 282 | ''') |
281 | echo "<div class='markdown-body'>" | 283 | print("<div class='markdown-body'>") |
282 | markdown_py -o html5 | 284 | # Note: you may want to run this through bleach for sanitization |
283 | echo "</div>" | 285 | markdown.markdownFromFile(input=sys.stdin, output_format="html5") |
286 | print("</div>") | ||