Markdown Basics
Dorcs supports the Markdown features most docs sites need out of the box.
Headings
# Page title
## Section
### Subsection
Headings are used to build the table of contents automatically.
Lists
- unordered
- lists
1. ordered
2. lists
Links
[Guide](/06_markdown/guide)
[External site](https://example.com)
Code
```go
fmt.Println("hello")
```
Tables
| Name | Role |
| --- | --- |
| API | Public |
| Admin | Internal |
Blockquotes and rules
> Important note
---