goessner / markdown-it-texmath

Support TeX math equations with your Markdown documents.
MIT License
161 stars 29 forks source link

Include forward slash in HTML escapes #48

Closed Cimbali closed 1 year ago

Cimbali commented 1 year ago

Trying to use your plugin in a web extension causes the Firefox addon review to fail with the following message:

1) Your escape function is not complete, you must escape for " / " as well.

  • lib\markdown-it-texmath\texmath.js line 7

Slash is a special character in HTML though meaningless on its own… Anyways this is the patch I’m using to fix that issue in case it might be of wider interest.

goessner commented 1 year ago

Thanks for catching this ...

-- Stefan