From: noah morrison Date: Mon, 10 Nov 2014 03:12:02 +0000 (-0500) Subject: Fixed html escaping on double quotes X-Git-Url: https://git.devinivas.org/?a=commitdiff_plain;h=29e295f467688e452cca19fc375956690991014a;p=chevron.git Fixed html escaping on double quotes I am an moron --- 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;', + '"': '"', '&': '&', '<': '<', '>': '>',