/
githubmirror
/
UFO
Обзор
Документация
Войти
/
githubmirror
/
UFO
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
documents/docs/javascripts/mermaid-init.js
32 строки
890 B
vyokky
optimized doc
04 ноя 2025, 17:31
04 ноя 2025, 17:31
6ce469f
Код
Авторство
О чём код?
// Initialize Mermaid for ReadTheDocs theme (function() { // Wait for DOM to be ready if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', initMermaid); } else { initMermaid(); } function initMermaid() { // Initialize Mermaid if (typeof mermaid !== 'undefined') { mermaid.initialize({ startOnLoad: true, theme: 'default', securityLevel: 'loose', flowchart: { useMaxWidth: true, htmlLabels: true, curve: 'basis' }, sequence: { useMaxWidth: true, wrap: true }, gantt: { useMaxWidth: true } }); } } })();