文章目录
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<script>
window.$docsify = {
name: 'My Document',
repo: '',
loadSidebar: true,
markdown: {
renderer: {
code: function(code, lang) {
if (lang === "nutuml") {
return (
'<div class="nutuml">' + nutuml.render(code) + "</div>"
);
}
return this.origin.code.apply(this, arguments);
}
}
}
}
</script>
<!-- Docsify v4 -->
<script src="http://dev.genlei.cn/js/nutuml.js"></script>
文章目录