From cbaaf2761dea0b83d274c1c1a1e4a1fb7c0dd5d7 Mon Sep 17 00:00:00 2001 From: Dan MacKinlay Date: Fri, 22 Feb 2019 20:27:48 +1100 Subject: [PATCH] urllib-based solution --- pandoc_reader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandoc_reader.py b/pandoc_reader.py index 3553828..bde84fe 100644 --- a/pandoc_reader.py +++ b/pandoc_reader.py @@ -79,7 +79,7 @@ class PandocReader(BaseReader): if status: raise subprocess.CalledProcessError(status, pandoc_cmd) - return output, metadata + return urllib.parse.unquote(output), metadata def add_reader(readers):