diff options
author | 2021-06-05 10:02:32 +0200 | |
---|---|---|
committer | 2021-06-05 10:02:32 +0200 | |
commit | 5014b7e55f6c19d227b0669e7591a60124e722c9 (patch) | |
tree | 09ad2e5ca8783c874e2f764f05bba37c2a1b9a38 /htmlChars | |
parent | ffee711b6633bebdc7299624e1b4f49d34779f4c (diff) | |
download | yt_audio_player_api-main.tar.gz yt_audio_player_api-main.tar.bz2 yt_audio_player_api-main.zip |
unescape html charactersmain
Diffstat (limited to 'htmlChars')
-rw-r--r-- | htmlChars | 22 |
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 = { + '"': '\"', + '"': '\"', + ''': '\\', + ''': '\\', + '&': '&', + '&': '&', + '>': '>', + '>': '>', + '<': '<', + '<': '<', + '¢': '¢', + '¢': '¢', + '©': '©', + '©': '©', + '€': '€', + '€': '€', + '£': '£', + '£': '£', + '®': '®', + '®': '®' +}; |