Skip to content

Instantly share code, notes, and snippets.

View lpenaud's full-sized avatar
💻
Working

Loïc Penaud lpenaud

💻
Working
View GitHub Profile
@lpenaud
lpenaud / header.html
Last active January 18, 2025 05:00 — forked from killercup/pandoc.css
Add style to pandoc HTML render.
<script type="module">
import mermaid from 'https://cdn.jsdelivr.net/npm/[email protected]/dist/mermaid.esm.min.mjs';
mermaid.initialize({ startOnLoad: false });
await mermaid.run({
nodes: document.querySelectorAll('pre.mermaid > code:first-child'),
});
function findMermaidSvg(child) {
if (child.tagName === "A" || child.tagName === "BUTTON") {
return null;