mirror of
https://git.zx2c4.com/cgit
synced 2024-11-22 08:28:42 +00:00
md2html: the default of stdin works fine
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
parent
c301899112
commit
3f9e14ada1
@ -1,6 +1,5 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
import markdown
|
import markdown
|
||||||
import sys
|
|
||||||
print('''
|
print('''
|
||||||
<style>
|
<style>
|
||||||
.markdown-body {
|
.markdown-body {
|
||||||
@ -282,5 +281,5 @@ print('''
|
|||||||
''')
|
''')
|
||||||
print("<div class='markdown-body'>")
|
print("<div class='markdown-body'>")
|
||||||
# Note: you may want to run this through bleach for sanitization
|
# 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>")
|
print("</div>")
|
||||||
|
Loading…
Reference in New Issue
Block a user