From 5014b7e55f6c19d227b0669e7591a60124e722c9 Mon Sep 17 00:00:00 2001 From: piotrruss Date: Sat, 5 Jun 2021 10:02:32 +0200 Subject: unescape html characters --- htmlChars | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 htmlChars (limited to 'htmlChars') diff --git a/htmlChars b/htmlChars new file mode 100644 index 0000000..3114945 --- /dev/null +++ b/htmlChars @@ -0,0 +1,22 @@ +module.exports = { + '"': '\"', + '"': '\"', + ''': '\\', + ''': '\\', + '&': '&', + '&': '&', + '>': '>', + '>': '>', + '<': '<', + '<': '<', + '¢': '¢', + '¢': '¢', + '©': '©', + '©': '©', + '€': '€', + '€': '€', + '£': '£', + '£': '£', + '®': '®', + '®': '®' +}; -- cgit v1.2.3