From d0ae3275b13afb7cf5d6fe3ce2c16e414f6a1a29 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Thu, 10 Nov 2016 14:22:08 -0800 Subject: [PATCH] html.entities: fix " unescape; --- extra/html/entities/entities.factor | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/extra/html/entities/entities.factor b/extra/html/entities/entities.factor index 562b7c8466..1baab98029 100644 --- a/extra/html/entities/entities.factor +++ b/extra/html/entities/entities.factor @@ -1654,8 +1654,10 @@ CONSTANT: html5 H{ { "quatint;" "\u002a16" } { "quest;" "?" } { "questeq;" "\u00225f" } - { "QUOT" " } { \"quot\" " } - { "QUOT;" " } { \"quot;\" " } + { "QUOT" "\"" } + { "QUOT;" "\"" } + { "quot" "\"" } + { "quot;" "\"" } { "rAarr;" "\u0021db" } { "race;" "\u00223d\u000331" } { "Racute;" "\u000154" }