20 lines
559 B
HTML
20 lines
559 B
HTML
<!-- The content below will be included at the end of the <head> element. -->
|
|
<script type="text/javascript">
|
|
const configureMermaidIconPacks = () => {
|
|
window['mermaid'].registerIconPacks([
|
|
{
|
|
name: 'logos',
|
|
loader: () => fetch('https://unpkg.com/@iconify-json/logos/icons.json').then((res) => res.json()),
|
|
},
|
|
]);
|
|
};
|
|
|
|
if (document.readyState !== 'loading') {
|
|
configureMermaidIconPacks();
|
|
} else {
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
configureMermaidIconPacks();
|
|
});
|
|
}
|
|
</script>
|