all repos — cgit @ 1892cd9a603e1eda206c40efb576bd75b7532be6

a hyperfast web frontend for git written in c

md2html: Do syntax highlighting too
Jason A. Donenfeld Jason@zx2c4.com
Tue, 23 Feb 2016 06:32:03 +0100
commit

1892cd9a603e1eda206c40efb576bd75b7532be6

parent

a9e9dfc55f5c57a4065be77c320224f524a9c820

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

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

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

#!/usr/bin/env python import markdown +from pygments.formatters import HtmlFormatter print(''' <style> .markdown-body {

@@ -277,9 +278,12 @@ padding: 0;

background-color: transparent; border: none; } +''') +print(HtmlFormatter(style='pastie').get_style_defs('.highlight')) +print(''' </style> ''') print("<div class='markdown-body'>") # Note: you may want to run this through bleach for sanitization -markdown.markdownFromFile(output_format="html5") +markdown.markdownFromFile(output_format="html5", extensions=["markdown.extensions.fenced_code", "markdown.extensions.codehilite", "markdown.extensions.tables"], extension_configs={"markdown.extensions.codehilite":{"css_class":"highlight"}}) print("</div>")