This document demonstrates all node types supported by MindStack.
This is a paragraph with bold, italic, strikethrough, inline code, and a link.
- Unordered item 1
- Unordered item 2
- Nested item
- Ordered item 1
- Ordered item 2
- Todo item (unchecked)
- Todo item (checked)
This is a blockquote. It can span multiple lines.
package main
import "fmt"
func main() {
fmt.Println("Hello, MindStack!")
}| Name | Type | Description |
|---|---|---|
| id | int | Primary key |
| title | string | Document title |
Inline formula:
Block formula:
Matrix example:
graph TD
A[Start] --> B{Is it working?}
B -->|Yes| C[Great!]
B -->|No| D[Debug]
D --> E[Fix Issues]
E --> B
C --> F[End]