Skip to content

Added config to disable html escaping#2

Open
DracoBlue wants to merge 1 commit intoepochtalk:masterfrom
DracoBlue:patch-1
Open

Added config to disable html escaping#2
DracoBlue wants to merge 1 commit intoepochtalk:masterfrom
DracoBlue:patch-1

Conversation

@DracoBlue
Copy link

This patch makes it possible to use:

var ret = parser.process({
  "escapeHtml": true,
  "text": "I have some <iframe src='http://google.de'></iframe> for [b]you[/b]"
})
// ret.html: "I have some &lt;iframe src='http://google.de'&gt;&lt;/iframe&gt; for <b>you</b>"

or

var ret = parser.process({
  "escapeHtml": false,
  "text": "I have some <iframe src='http://google.de'></iframe> for [b]you[/b]"
})
// ret.html: "I have some <iframe src='http://google.de'></iframe> for <b>you</b>"

where escapeHtml is by default false to stay backwards compatible.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant