From d3ee64c1d99287d40e1f67f386a438e0c68ec0b6 Mon Sep 17 00:00:00 2001 From: Peter Ludikovsky Date: Wed, 4 May 2016 14:26:06 +0200 Subject: [PATCH] Kleiner Fix wenn E-Mail Adressen vorkommen --- mdlive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mdlive.py b/mdlive.py index 90f0423..5d520fa 100755 --- a/mdlive.py +++ b/mdlive.py @@ -5,7 +5,7 @@ import subprocess import shlex app = Flask(__name__, static_url_path='') -command = shlex.split('/usr/bin/pandoc -f markdown+footnotes+inline_notes+auto_identifiers -t html5 --smart') +command = shlex.split('/usr/bin/pandoc -f markdown+footnotes+inline_notes+auto_identifiers -t html5 --smart --email-obfuscation=references') @app.route("/") def index():