dashboard
repositories
filestore
activity
search
login
external-software
/
github_gohugo_theme_compose
mirror of
https://github.com/onweru/compose.git
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
add mermaid support
weru
15.31.2021
2878e54160348cbfa9d8c41dcf0cbe8b5f3ccbab
[external-software/github_gohugo_theme_compose.git]
/
layouts
/
partials
/
scripts
/
other.html
1
2
3
4
5
6
7
8
9
10
11
{{ if in .Plain "mermaid" }}
<script defer src={{ absURL "js/mermaid.min.js" }}></script>
<script>
document.addEventListener("DOMContentLoaded", function(event) {
mermaid.initialize({
flowchart: { useMaxWidth: true }
});
});
</script>
{{ end }}