prettify-extension
prettify-extension copied to clipboard
Prettify extension for Showdown.js
I get the following error: >Uncaught Error: Extension "prettify" could not be loaded. It was either not found or is not a valid extension. I load it as stated in...
I got this warning in the latest version of Chrome. ``` DEPRECATION WARNING: prettify is an old extension that uses a deprecated loading method.Please inform the developer that the extension...
index.html ```html index ``` main.js ```js showdown.setFlavor('github'); var converter = new showdown.Converter({extensions: ['prettify']}); var input = "```js\n" + "function add(a, b) { console.log(); }\n" + "```"; var html = converter.makeHtml(input);...