]> gitweb.ps.run Git - ps-cgit/blobdiff - filters/html-converters/md2html
md2html: the default of stdin works fine
[ps-cgit] / filters / html-converters / md2html
index 1488f480418fef6ab52db5463b76af0ef848f2c6..67141ba67936c8e84c1638c499185991b90b32d7 100755 (executable)
@@ -1,6 +1,5 @@
 #!/usr/bin/env python
 import markdown
-import sys
 print('''
 <style>
 .markdown-body {
@@ -282,5 +281,5 @@ print('''
 ''')
 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>")