md2html: the default of stdin works fine

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Bu işleme şunda yer alıyor:
Jason A. Donenfeld 2015-10-12 18:33:21 +02:00
ebeveyn c301899112
işleme 3f9e14ada1
1 değiştirilmiş dosya ile 1 ekleme ve 2 silme

Dosyayı Görüntüle

@ -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>")