Mkdocs
Tags
To set tags on page add code on top of file:
---
tags:
- Video
- Youtube
---
Material theme
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;