Skip to content

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