Markdown Syntax
Supported formatting on Rentry
Text
**bold** | bold text |
|---|---|
*italic* | italic text |
~~strikethrough~~ | |
`inline code` | inline code |
Headings
# Heading 1 | Heading 1 |
|---|---|
## Heading 2 | Heading 2 |
### Heading 3 | Heading 3 |
Links & Images
[text](url) | Link |
|---|---|
 | Image |
Lists
- item | Unordered list |
|---|---|
1. item | Ordered list |
- [ ] task | Unchecked task |
- [x] task | Checked task |
Blockquotes
> quote | Blockquote |
|---|
Code Blocks
```python | Fenced code block with syntax highlighting |
|---|---|
``` | Fenced code block (no highlight) |
Tables
| A | B | | Table with two columns |
|---|
Horizontal Rule
--- | Horizontal rule |
|---|