@@ -37,6 +37,7 @@ <h2 id="table-of-contents">Table of Contents</h2>
3737< li > < a href ="#images-and-static-files "> Images and Static Files</ a > </ li >
3838< li > < a href ="#automatic-h1 "> Automatic H1</ a > </ li >
3939< li > < a href ="#shortlinks "> Shortlinks</ a > </ li >
40+ < li > < a href ="#mermaid-diagrams-and-charts "> Mermaid Diagrams and Charts</ a > </ li >
4041< li > < a href ="#table-of-contents-generation "> Table of Contents Generation</ a > </ li >
4142< li > < a href ="#hidden-directories "> Hidden Directories</ a > </ li >
4243< li > < a href ="#controlling-sort-order "> Controlling Sort Order</ a > </ li >
@@ -82,6 +83,7 @@ <h2 id="feature-highlights">Feature Highlights</h2>
8283< li > Can optionally show additional file types in the navigation menu (e.g. PDF
8384files).</ li >
8485< li > Optional support for < code > [[Short Link]]</ code > syntax.</ li >
86+ < li > Optional support for Mermaid diagrams.</ li >
8587< li > Optional basic authentication.</ li >
8688< li > Support for extended markdown syntax, such as footnotes and syntax
8789highlighting.</ li >
@@ -171,6 +173,10 @@ <h2 id="configuration-file">Configuration File</h2>
171173< span class ="c1 "> # enable syntax highlighter for code snippets</ span >
172174< span class ="na "> highlighter</ span > < span class ="pi "> :</ span > < span class ="kc "> true</ span >
173175
176+ < span class ="c1 "> # enable mermaid diagramming and charting</ span >
177+ < span class ="c1 "> # put your diagram code inside <div class='mermaid'>...</div></ span >
178+ < span class ="na "> mermaid</ span > < span class ="pi "> :</ span > < span class ="kc "> false</ span >
179+
174180< span class ="c1 "> # enable the copy to clipboard icon for code snippets</ span >
175181< span class ="na "> copy_code</ span > < span class ="pi "> :</ span > < span class ="kc "> true</ span >
176182
@@ -273,6 +279,11 @@ <h3 id="shortlinks">Shortlinks</h3>
273279< code > [Anything](Anything)</ code > , which will then be rendered as an internal link to a
274280file or a directory in the same directory as the file itself.</ p >
275281
282+ < h3 id ="mermaid-diagrams-and-charts "> Mermaid Diagrams and Charts</ h3 >
283+
284+ < p > When the < code > mermaid</ code > option is enabled, you may display any mermaid diagram in
285+ your document by enclosing it in a < code > <div class='mermaid'>...</div></ code > block.</ p >
286+
276287< h3 id ="table-of-contents-generation "> Table of Contents Generation</ h3 >
277288
278289< h4 id ="site-wide "> Site-wide</ h4 >
0 commit comments