summaryrefslogtreecommitdiffstats
path: root/htmlChars
blob: 3114945e33666b2cce80b7dffeebdcd416f45388 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module.exports = {
  '"': '\"',
  '"': '\"',
  ''': '\\',
  ''': '\\',
  '&': '&',
  '&': '&',
  '>': '>',
  '>': '>',
  '&lt;': '<',
  '&#60;': '<',
  '&cent;': '¢',
  '&#162;': '¢',
  '&copy;': '©',
  '&#169;': '©',
  '&euro;': '€',
  '&#8364;': '€',
  '&pound;': '£',
  '&#163;': '£',
  '&reg;': '®',
  '&#174;': '®'
};