GoMark supports several common Markdown and GitHub Flavored Markdown features.
Tables#
Tables are supported, including alignment and inline formatting.
markdown
| Name | Role | Notes |
| :--- | :---: | ---: |
| Alice | Editor | `active` |
| Bob | Reviewer | **approved** |
| Charlie | Author | 3 || Name | Role | Notes |
|---|---|---|
| Alice | Editor | active |
| Bob | Reviewer | approved |
| Charlie | Author | 3 |
Headings#
Use headings to structure a page.
markdown
# H1
## H2
### H3H1#
H2#
H3#
Emphasis#
markdown
This is **bold**, *italic*, and `inline code`.This is bold, italic, and inline code.
Links#
markdown
[GoMark documentation](/getting-started)Lists#
markdown
- First item
- Second item
1. First step
2. Second step- First item
- Second item
- First step
- Second step
Blockquotes#
markdown
> This is a quoted paragraph.This is a quoted paragraph.
Code fences#
markdown
```go
fmt.Println("hello")
```go
fmt.Println("hello")Images#
Images render with lazy loading.
markdown

Nested lists#
markdown
- First item
- Nested item
- Second item- First item
- Nested item
- Second item
Callouts#
Admonition-style callouts are supported.
markdown
> [!NOTE]
> This is a note callout.
> [!TIP] Use **bold** text inside a callout.
> [!IMPORTANT] This is an important callout.
> [!WARNING] This is a warning callout.
> [!CAUTION] This is a caution callout.Note
This is a note callout.
Tip
Use bold text inside a callout.
Important
This is an important callout.
Warning
This is a warning callout.
Caution
This is a caution callout.