1
0
Fork 0

md2html: use pure python

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Dieser Commit ist enthalten in:
Jason A. Donenfeld 2015-10-12 16:42:48 +02:00
Ursprung 76dc7a3371
Commit ccb4254104
1 geänderte Dateien mit 9 neuen und 6 gelöschten Zeilen

Datei anzeigen

@ -1,5 +1,7 @@
#!/bin/sh
cat <<_EOF
#!/usr/bin/env python
import markdown
import sys
print('''
<style>
.markdown-body {
font-size: 14px;
@ -277,7 +279,8 @@ cat <<_EOF
border: none;
}
</style>
_EOF
echo "<div class='markdown-body'>"
markdown_py -o html5
echo "</div>"
''')
print("<div class='markdown-body'>")
# Note: you may want to run this through bleach for sanitization
markdown.markdownFromFile(input=sys.stdin, output_format="html5")
print("</div>")