We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
&
In EpicEditor, when adding a code block like this:
foo&bar
...the result looks like this:
foo&bar
I'm pretty sure GitHub also uses Marked.js as a parser, so I'm guessing this is happening in the export() method?
export()
The text was updated successfully, but these errors were encountered:
SOLUTION: In epiceditor.js, change line 197 from this:
epiceditor.js
return content.replace(/\u00a0/g, ' ').replace(/ /g, ' ');
...to this:
return content.replace(/\u00a0/g, ' ').replace(/ /g, ' ').replace(/\u0026/g, '&').replace(/&/g, '&');
I will put in a pull request shortly.
Sorry, something went wrong.
Ticket OscarGodson#334 - Fixed bug where ampersand would be parsed as…
dc512b9
… & inside code blocks.
👍 It Rocks !
thx
No branches or pull requests
In EpicEditor, when adding a code block like this:
...the result looks like this:
I'm pretty sure GitHub also uses Marked.js as a parser, so I'm guessing this is happening in the
export()
method?The text was updated successfully, but these errors were encountered: