hugo流程图mermaid
目录
简介
有一段时间用有道云笔记来做笔记。里面有一个非常喜欢的功能就是流程图.
同时我在看自己的站点过程中,觉得不够美观。更多的使用图表类似的功能,会让表达更加直观。所以今天就在 hugo 里加上图表.
Hugo 的渲染
使用 markdown
主要采用 markdown
文件进行文章的编写,它的方案如下:
- Md 文件的解析,是用的 blackfriday
- 除了已有的自带拓展,提供 shortcodes 来进行功能的拓展
Shortcodes 的演示
使用 {{< youtube 8HnLRrQ3RS4 >}}
的简短编写,即可完成如下 youtube 视频的展示。
想要自动播放的话,使用 {{< youtube id="8HnLRrQ3RS4" autoplay="true" >}}"
即可。
为 markdown 拓展流程图
关于 mermaid
mermaid 是一个 js 库,用来渲染流程图用的。2 w 多的 star,看了一下文档,觉得博客是肯定够了的。
如果真的要求特别高,那不如用专业软件做出来,导出图片更好。
拓展步骤
- 在你使用的主题中,找到
yoursite/themes/themes_name/layouts
文件夹,如果没有shortcodes
文件夹,就自己新建一个 - 把
mermaid的script标签
贴到yoursite/themes/themes_name/layouts/partials/footer.html
的footer外部
<!--head部分添加-->
<script src="https://cdn.bootcss.com/mermaid/8.0.0-rc.8/mermaid.min.js"></script>
在 shortcodes
目录下新建 mermaid.html
文件
<!--mermaid.html-->
<div class="mermaid" align="{{ if .Get "align" }}
{{ .Get "align" }}
{{ else }}
center
{{ end }}">
{{ safeHTML .Inner }}
</div>
Ojbk,测试一下
{{< mermaid >}}
sequenceDiagram
participant Alice
participant Bob
Alice->John: Hello John, how are you?
loop Healthcheck
John->John: Fight against hypochondria
end
Note right of John: Rational thoughts <br/>prevail...
John-->Alice: Great!
John->Bob: How about you?
Bob-->John: Jolly good!
{{< /mermaid >}}
SequenceDiagram Participant Alice Participant Bob Alice->John: Hello John, how are you? Loop Healthcheck John->John: Fight against hypochondria End Note right of John: Rational thoughts
prevail... John-->Alice: Great! John->Bob: How about you? Bob-->John: Jolly good!