Skip to content

Commit eda7b5e

Browse files
authored
Fix usage of mermaid in ExUnit &co (#14376)
1 parent 699bb91 commit eda7b5e

File tree

1 file changed

+37
-1
lines changed

1 file changed

+37
-1
lines changed

lib/elixir/scripts/mix_docs.exs

+37-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,41 @@ canonical = System.fetch_env!("CANONICAL")
1313
logger: "https://hexdocs.pm/logger/#{canonical}",
1414
mix: "https://hexdocs.pm/mix/#{canonical}"
1515
],
16-
formatters: ["html", "epub"]
16+
formatters: ["html", "epub"],
17+
before_closing_body_tag: fn
18+
:html ->
19+
"""
20+
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/mermaid.min.js"></script>
21+
<script>
22+
let initialized = false;
23+
24+
window.addEventListener("exdoc:loaded", () => {
25+
if (!initialized) {
26+
mermaid.initialize({
27+
startOnLoad: false,
28+
theme: document.body.className.includes("dark") ? "dark" : "default"
29+
});
30+
initialized = true;
31+
}
32+
33+
let id = 0;
34+
for (const codeEl of document.querySelectorAll("pre code.mermaid")) {
35+
const preEl = codeEl.parentElement;
36+
const graphDefinition = codeEl.textContent;
37+
const graphEl = document.createElement("div");
38+
const graphId = "mermaid-graph-" + id++;
39+
mermaid.render(graphId, graphDefinition).then(({svg, bindFunctions}) => {
40+
graphEl.innerHTML = svg;
41+
bindFunctions?.(graphEl);
42+
preEl.insertAdjacentElement("afterend", graphEl);
43+
preEl.remove();
44+
});
45+
}
46+
});
47+
</script>
48+
"""
49+
50+
_ ->
51+
""
52+
end
1753
]

0 commit comments

Comments
 (0)