about summary refs log tree commit diff stats
path: root/filters
diff options
context:
space:
mode:
authorJason A. Donenfeld2015-10-12 18:33:21 +0200
committerJason A. Donenfeld2015-10-12 18:33:46 +0200
commit3f9e14ada1e9cb3bb5b162f10f824336e3142440 (patch)
tree6199e8234c425b0ce956b47bc7db3134f6f72d9c /filters
parentfilters: misc cleanups (diff)
downloadcgit-3f9e14ada1e9cb3bb5b162f10f824336e3142440.tar.gz
cgit-3f9e14ada1e9cb3bb5b162f10f824336e3142440.zip
md2html: the default of stdin works fine
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'filters')
-rwxr-xr-xfilters/html-converters/md2html3
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
2import markdown 2import markdown
3import sys
4print(''' 3print('''
5<style> 4<style>
6.markdown-body { 5.markdown-body {
@@ -282,5 +281,5 @@ print('''
282''') 281''')
283print("<div class='markdown-body'>") 282print("<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
285markdown.markdownFromFile(input=sys.stdin, output_format="html5") 284markdown.markdownFromFile(output_format="html5")
286print("</div>") 285print("</div>")