all repos — cgit @ 3f9e14ada1e9cb3bb5b162f10f824336e3142440

a hyperfast web frontend for git written in c

md2html: the default of stdin works fine

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Jason A. Donenfeld Jason@zx2c4.com
Mon, 12 Oct 2015 18:33:21 +0200
commit

3f9e14ada1e9cb3bb5b162f10f824336e3142440

parent

c301899112b2a0559e0f65e3b371a907e9e5c097

1 files changed, 1 insertions(+), 2 deletions(-)

jump to
M filters/html-converters/md2htmlfilters/html-converters/md2html

@@ -1,6 +1,5 @@

#!/usr/bin/env python import markdown -import sys print(''' <style> .markdown-body {

@@ -282,5 +281,5 @@ </style>

''') print("<div class='markdown-body'>") # Note: you may want to run this through bleach for sanitization -markdown.markdownFromFile(input=sys.stdin, output_format="html5") +markdown.markdownFromFile(output_format="html5") print("</div>")