Headings
2 snippetsCreate section headers
ATX Style
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6 Setext Style
Heading 1
=========
Heading 2
--------- Text Formatting
6 snippetsStyle inline text
Bold
**bold text**
__also bold__ Italic
*italic text*
_also italic_ Bold + Italic
***bold and italic***
___also works___ Strikethrough
~~deleted text~~ Code
`inline code` Highlight
==highlighted text== # Some parsers Lists
4 snippetsOrdered and unordered lists
Unordered
- Item 1
- Item 2
- Nested item
- Another nested
- Item 3 Ordered
1. First item
2. Second item
1. Nested item
2. Another nested
3. Third item Task List
- [x] Completed task
- [ ] Incomplete task
- [ ] Another task Definition List
Term
: Definition of term
Another term
: Its definition Tired of looking up syntax?
DocuWriter.ai generates documentation and explains code using AI.
Links & Images
5 snippetsAdd hyperlinks and media
Link
[Link text](https://example.com)
[Link with title](https://example.com "Title") Reference Link
[Link text][ref]
[ref]: https://example.com Auto Link
<https://example.com>
<email@example.com> Image

 Image with Link
[](https://example.com) Code Blocks
3 snippetsDisplay code snippets
Indented Block
function hello() {
console.log("Hello");
} Fenced Block
```javascript
function hello() {
console.log("Hello");
}
``` With Line Numbers
```javascript {1,3-5}
const x = 1;
const y = 2;
const z = 3;
``` Block Elements
3 snippetsBlockquotes, rules, and more
Blockquote
> This is a quote
>
> With multiple paragraphs Nested Quote
> Level 1
>> Level 2
>>> Level 3 Horizontal Rule
---
***
___ Tables
2 snippetsCreate data tables
Basic Table
| Header 1 | Header 2 |
|----------|----------|
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 | Alignment
| Left | Center | Right |
|:-----|:------:|------:|
| L | C | R |
| L | C | R | Advanced
5 snippetsExtended syntax
Footnote
Here's a sentence[^1].
[^1]: This is the footnote. Abbreviation
The HTML spec is great.
*[HTML]: Hypertext Markup Language Emoji
:smile: :rocket: :thumbsup: Math (KaTeX)
Inline: $E = mc^2$
Block:
$$
\sum_{i=1}^n x_i
$$ Escape Characters
\* Not italic \*
\# Not a heading