fixed markup escaping. fixes #290
This commit is contained in:
parent
bef4af91f8
commit
b422d4efef
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@
|
|||
|
||||
function escapeMarkup(markup) {
|
||||
if (markup && typeof(markup) === "string") {
|
||||
return markup.replace("&", "&");
|
||||
return markup.replace(/&/g, "&");
|
||||
} else {
|
||||
return markup;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue