From 29e295f467688e452cca19fc375956690991014a Mon Sep 17 00:00:00 2001 From: noah morrison Date: Sun, 9 Nov 2014 22:12:02 -0500 Subject: [PATCH] Fixed html escaping on double quotes I am an moron --- entei.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entei.py b/entei.py index 1bdca1f..2c86ccc 100755 --- a/entei.py +++ b/entei.py @@ -172,7 +172,7 @@ def render(template, data, partials_path='.', partials_ext='mustache', def html_escape(string): html_codes = { - '"': '$quot;', + '"': '"', '&': '&', '<': '<', '>': '>', -- 2.47.3