Skip to content

Latest commit

 

History

History
57 lines (45 loc) · 1.19 KB

markdown.md

File metadata and controls

57 lines (45 loc) · 1.19 KB

Markdown Einstellungen

docsify verwendet marked, um Markdown umzuwandeln. Du kannst einstellen, wie es deine Markdown Seiten in HTML umwandelt, indem du renderer konfigurierst:

window.$docsify = {
  markdown: {
    smartypants: true,
    renderer: {
      link: function() {
        // ...
      }
    }
  }
}

?> Für mögliche Einstellungen, siehe marked Dokumentation

Du kannst die Regeln auch beliebig anpassen.

window.$docsify = {
  markdown: function(marked, renderer) {
    // ...

    return marked
  }
}

mermaid Unterstützung

// Importiere mermaid
//  <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.css">
//  <script src="//cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>

mermaid.initialize({ startOnLoad: false });

window.$docsify = {
  markdown: {
    renderer: {
      code: function(code, lang) {
        if (lang === "mermaid") {
          return (
            '<div class="mermaid">' + mermaid.render(lang, code) + "</div>"
          );
        }
        return this.origin.code.apply(this, arguments);
      }
    }
  }
}