]> gitweb.ps.run Git - ps-cgit/blobdiff - filters/html-converters/md2html
md2html: use sane_lists extension
[ps-cgit] / filters / html-converters / md2html
index 1488f480418fef6ab52db5463b76af0ef848f2c6..f505cb2354236eb0bfeaea70f14c8a01d363f32b 100755 (executable)
@@ -1,7 +1,12 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 import markdown
 import sys
-print('''
+import io
+from pygments.formatters import HtmlFormatter
+from markdown.extensions.toc import TocExtension
+sys.stdin = io.TextIOWrapper(sys.stdin.buffer, encoding='utf-8')
+sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
+sys.stdout.write('''
 <style>
 .markdown-body {
     font-size: 14px;
@@ -44,10 +49,14 @@ print('''
     line-height: 1;
     padding-left: 0;
     margin-left: -22px;
-    top: 15%}
+    top: 15%;
+}
 .markdown-body h1:hover a.anchor .mini-icon-link, .markdown-body h2:hover a.anchor .mini-icon-link, .markdown-body h3:hover a.anchor .mini-icon-link, .markdown-body h4:hover a.anchor .mini-icon-link, .markdown-body h5:hover a.anchor .mini-icon-link, .markdown-body h6:hover a.anchor .mini-icon-link {
     display: inline-block;
 }
+div#cgit .markdown-body h1 a.toclink, div#cgit .markdown-body h2 a.toclink, div#cgit .markdown-body h3 a.toclink, div#cgit .markdown-body h4 a.toclink, div#cgit .markdown-body h5 a.toclink, div#cgit .markdown-body h6 a.toclink {
+    color: black;
+}
 .markdown-body h1 tt, .markdown-body h1 code, .markdown-body h2 tt, .markdown-body h2 code, .markdown-body h3 tt, .markdown-body h3 code, .markdown-body h4 tt, .markdown-body h4 code, .markdown-body h5 tt, .markdown-body h5 code, .markdown-body h6 tt, .markdown-body h6 code {
     font-size: inherit;
 }
@@ -278,9 +287,22 @@ print('''
     background-color: transparent;
     border: none;
 }
+''')
+sys.stdout.write(HtmlFormatter(style='pastie').get_style_defs('.highlight'))
+sys.stdout.write('''
 </style>   
 ''')
-print("<div class='markdown-body'>")
+sys.stdout.write("<div class='markdown-body'>")
+sys.stdout.flush()
 # Note: you may want to run this through bleach for sanitization
-markdown.markdownFromFile(input=sys.stdin, output_format="html5")
-print("</div>")
+markdown.markdownFromFile(
+       output_format="html5",
+       extensions=[
+               "markdown.extensions.fenced_code",
+               "markdown.extensions.codehilite",
+               "markdown.extensions.tables",
+               "markdown.extensions.sane_lists",
+               TocExtension(anchorlink=True)],
+       extension_configs={
+               "markdown.extensions.codehilite":{"css_class":"highlight"}})
+sys.stdout.write("</div>")