dashboard
repositories
filestore
activity
search
login
external-software
/
github_gohugo_theme_anatole
mirror of
https://github.com/lxndrblz/anatole.git
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
chore: fix hugo deprecation warnings (hugo 0.157.0) (#586)
Andreas Deininger
2 days ago
d23a5e8fbb7aeacd6fd2a39bf4616e63ede75121
[external-software/github_gohugo_theme_anatole.git]
/
layouts
/
partials
/
mermaid.html
1
2
3
4
5
6
7
{{ if .Page.Store.Get "hasMermaid" }}
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
<script>
const mermaidtheme = getStoredThemeStyle() === 'dark' ? 'dark' : 'base';
mermaid.initialize({ startOnLoad: true, theme: mermaidtheme });
</script>
{{ end }}