From mboxrd@z Thu Jan 1 00:00:00 1970 From: list at eworm.de (Christian Hesse) Date: Mon, 12 Oct 2015 17:34:22 +0200 Subject: [PATCH 1/1] filters: force python 3.x and fix options Message-ID: <1444664062-23229-1-git-send-email-list@eworm.de> From: Christian Hesse The python markdown module is a little bit picky when it come to options. So force python 3.x and fix the options. Documentation says about input: [...] or None (default) which will read from stdin. Signed-off-by: Christian Hesse --- filters/html-converters/md2html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/filters/html-converters/md2html b/filters/html-converters/md2html index 1488f48..8adedbe 100755 --- a/filters/html-converters/md2html +++ b/filters/html-converters/md2html @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import markdown import sys print(''' @@ -282,5 +282,5 @@ print(''' ''') print("
") # Note: you may want to run this through bleach for sanitization -markdown.markdownFromFile(input=sys.stdin, output_format="html5") +markdown.markdownFromFile(input=None, output_format="html5") print("
") -- 2.6.1