about summary refs log tree commit diff stats
path: root/filters
diff options
context:
space:
mode:
authorJason A. Donenfeld2015-10-12 16:42:48 +0200
committerJason A. Donenfeld2015-10-12 16:42:54 +0200
commitccb4254104ad6faa9225ce91b9a0610f24958022 (patch)
tree88e0e6dfd8d23db874e8903ea81d5550c63c0a04 /filters
parentcache: fix resource leak: close file handle before return (diff)
downloadcgit-ccb4254104ad6faa9225ce91b9a0610f24958022.tar.gz
cgit-ccb4254104ad6faa9225ce91b9a0610f24958022.zip
md2html: use pure python
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'filters')
-rwxr-xr-xfilters/html-converters/md2html15
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
2cat <<_EOF 2import markdown
3import sys
4print('''
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''')
281echo "<div class='markdown-body'>" 283print("<div class='markdown-body'>")
282markdown_py -o html5 284# Note: you may want to run this through bleach for sanitization
283echo "</div>" 285markdown.markdownFromFile(input=sys.stdin, output_format="html5")
286print("</div>")