1
1
Fork 1
mirror of https://github.com/go-gitea/gitea.git synced 2024-05-22 11:26:06 +02:00
silverwind 2023-10-08 15:32:42 +02:00 committed by GitHub
parent 4ffa683820
commit 1d4c193df5
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,9 +4,11 @@ import {displayError} from './common.js';
const {mermaidMaxSourceCharacters} = window.config;
// margin removal is for https://github.com/mermaid-js/mermaid/issues/4907
const iframeCss = `:root {color-scheme: normal}
body {margin: 0; padding: 0; overflow: hidden}
#mermaid {display: block; margin: 0 auto}`;
#mermaid {display: block; margin: 0 auto}
blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {margin: 0}`;
export async function renderMermaid() {
const els = document.querySelectorAll('.markup code.language-mermaid');