Skip to content

Mkdocs

Tags

To set tags on page add code on top of file:

---
tags:
  - Video
  - Youtube
---
note: Use spaces not tabs, otherwise tags wouldn't be parsed and will be rendered as markdown

Material theme

Link to documentation

Tabs

    package main

    func main() {
        print("Hello world")
    }
  • First
  • Second
=== "With code block"

    package main

    func main() {
        print("Hello world")
    }

=== "Simple text"

    * First
    * Second

Mermaid diagram

graph LR
    A[Start] --> B{Error?};
    B -->|Yes| C[Hmm...];
    C --> D[Debug];
    D --> B;
    B -->|Maybe| F[Wth];
    B --->|No| E[Yay!];
    F --> D;

more examples of diagrams