mirror of
https://github.com/docsifyjs/docsify.git
synced 2025-12-08 19:55:52 +00:00
54 lines
1.1 KiB
Markdown
54 lines
1.1 KiB
Markdown
# Markdown configuration
|
|
|
|
**docsify** uses [marked](https://github.com/chjj/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://github.com/chjj/marked#options-1)
|
|
|
|
Even you can completely customize the parsing rules.
|
|
|
|
```js
|
|
window.$docsify = {
|
|
markdown: function(marked, renderer) {
|
|
// ...
|
|
|
|
return marked
|
|
}
|
|
}
|
|
```
|
|
|
|
## Supports mermaid
|
|
|
|
```js
|
|
// Import mermaid
|
|
// <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.css">
|
|
// <script src="//cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
|
|
|
|
window.$docsify = {
|
|
markdown: {
|
|
renderer: {
|
|
code: function(code, lang) {
|
|
if (lang === "mermaid") {
|
|
return (
|
|
'<div class="mermaid">' + mermaid.render(lang, code) + "</div>"
|
|
);
|
|
}
|
|
return this.origin.code.apply(this, arguments);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
```
|