summaryrefslogtreecommitdiffstats
path: root/htmlChars
diff options
context:
space:
mode:
authorGravatar piotrruss <mail@pruss.it> 2021-06-05 10:02:32 +0200
committerGravatar piotrruss <mail@pruss.it> 2021-06-05 10:02:32 +0200
commit5014b7e55f6c19d227b0669e7591a60124e722c9 (patch)
tree09ad2e5ca8783c874e2f764f05bba37c2a1b9a38 /htmlChars
parentffee711b6633bebdc7299624e1b4f49d34779f4c (diff)
downloadyt_audio_player_api-5014b7e55f6c19d227b0669e7591a60124e722c9.tar.gz
yt_audio_player_api-5014b7e55f6c19d227b0669e7591a60124e722c9.tar.bz2
yt_audio_player_api-5014b7e55f6c19d227b0669e7591a60124e722c9.zip
unescape html charactersmain
Diffstat (limited to 'htmlChars')
-rw-r--r--htmlChars22
1 files changed, 22 insertions, 0 deletions
diff --git a/htmlChars b/htmlChars
new file mode 100644
index 0000000..3114945
--- /dev/null
+++ b/htmlChars
@@ -0,0 +1,22 @@
+module.exports = {
+ '&quot;': '\"',
+ '&#34;': '\"',
+ '&apos;': '\\',
+ '&#39;': '\\',
+ '&amp;': '&',
+ '&#38;': '&',
+ '&gt;': '>',
+ '&#62;': '>',
+ '&lt;': '<',
+ '&#60;': '<',
+ '&cent;': '¢',
+ '&#162;': '¢',
+ '&copy;': '©',
+ '&#169;': '©',
+ '&euro;': '€',
+ '&#8364;': '€',
+ '&pound;': '£',
+ '&#163;': '£',
+ '&reg;': '®',
+ '&#174;': '®'
+};