# Markdown configuration **docsify** uses [marked](https://github.com/markedjs/marked) as its Markdown parser. You can customize how it renders your Markdown content to HTML by customizing `renderer`: ```js window.$docsify = { markdown: { smartypants: true, renderer: { link: function() { // ... } } } } ``` ?> Configuration Options Reference: [marked documentation](https://marked.js.org/#/USING_ADVANCED.md) You can completely customize the parsing rules. ```js window.$docsify = { markdown: function(marked, renderer) { // ... return marked } } ``` ## Supports mermaid ```js // Import mermaid // // var num = 0; mermaid.initialize({ startOnLoad: false }); window.$docsify = { markdown: { renderer: { code: function(code, lang) { if (lang === "mermaid") { return ( '