Mathpix / mathpix-markdown-it

Markdown rendering + Latex extras (equations, tables, ...), with conversion features, for the scientific community
MIT License
465 stars 42 forks source link

Don't img tags support object URL? #314

Closed nicolas-tesla-x closed 2 months ago

nicolas-tesla-x commented 3 months ago

As shown, when I set the src attribute of img to Object URL, the src attribute is lost

image

OlgaRedozubova commented 3 months ago

@nicolas-tesla-x blob:html is considered an invalid URL scheme and does not pass the Sanitize check.

  // URL schemes we permit
  allowedSchemes: ['http', 'https', 'ftp', 'mailto'],

For this to work, need to disable the Sanitize check. This can be done by setting htmlSanitize: false

window.markdownToHTML(s, {htmlTags: true, htmlSanitize: false})

Screenshot 2024-03-21 at 09 58 28
nicolas-tesla-x commented 3 months ago
  // URL schemes we permit
  allowedSchemes: ['http', 'https', 'ftp', 'mailto'],

For this to work, need to disable the Sanitize check. This can be done by setting htmlSanitize: false

window.markdownToHTML(s, {htmlTags: true, htmlSanitize: false})

Screenshot 2024-03-21 at 09 58 28

@OlgaRedozubova thank you! It works!