We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
title.
I want to disable parsing images

should not be parsed
The text was updated successfully, but these errors were encountered:
See #420
Sorry, something went wrong.
Any updates on how can we disable parsing images?
No commits were made since my last comment. That method I linked is still the easiest one to achieve what you need.
#989
I don't believe we need a new feature for this since it can be disabled as discussed in #420 and #1302
const marked = require('marked'); const renderer = new marked.Renderer(); renderer.image = function (text) { return text; }; var html = marked(markdownString, { renderer: renderer });
No branches or pull requests
title.
I want to disable parsing images
should not be parsed
The text was updated successfully, but these errors were encountered: