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. In my case I want to disable images.
The text was updated successfully, but these errors were encountered:
Does this work?
var marked = require("marked") function MyRenderer() { marked.Renderer.apply(this, arguments) } MyRenderer.prototype = Object.create(marked.Renderer.prototype) MyRenderer.prototype.image = function () { return "" // don't print images }
Sorry, something went wrong.
See #420 or use #660 if you just want to disable the parsing of some type of feature, so that the source will appear at the output as-is.
Closing to consolidate issues
No branches or pull requests
title. In my case I want to disable images.
The text was updated successfully, but these errors were encountered: