Headings
2 snippetsCreate section headers
ATX Style
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6Setext 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 parsersLists
4 snippetsOrdered and unordered lists
Unordered
- Item 1
- Item 2
- Nested item
- Another nested
- Item 3Ordered
1. First item
2. Second item
1. Nested item
2. Another nested
3. Third itemTask List
- [x] Completed task
- [ ] Incomplete task
- [ ] Another taskDefinition List
Term
: Definition of term
Another term
: Its definitionTired 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.comAuto 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 paragraphsNested Quote
> Level 1
>> Level 2
>>> Level 3Horizontal 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 LanguageEmoji
:smile: :rocket: :thumbsup:Math (KaTeX)
Inline: $E = mc^2$
Block:
$$
\sum_{i=1}^n x_i
$$Escape Characters
\* Not italic \*
\# Not a heading