mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 09:46:22 +00:00
Add question mark
This commit is contained in:
@@ -14,7 +14,8 @@ function decodeHTMLEntities (text) {
|
||||
['apos', '\''],
|
||||
['amp', '&'],
|
||||
['lt', '<'],
|
||||
['gt', '>']
|
||||
['gt', '>'],
|
||||
['#63', '?']
|
||||
]
|
||||
|
||||
for (var i = 0, max = entities.length; i < max; ++i) {
|
||||
@@ -29,7 +30,8 @@ function encodeHTMLEntities (text) {
|
||||
['\'', 'apos'],
|
||||
['&', 'amp'],
|
||||
['<', 'lt'],
|
||||
['>', 'gt']
|
||||
['>', 'gt'],
|
||||
['?', '#63']
|
||||
]
|
||||
|
||||
for (var i = 0, max = entities.length; i < max; ++i) {
|
||||
|
||||
Reference in New Issue
Block a user