letr.es supports GFM (GitHub Flavored Markdown). Here's everything you can use in your posts.
Headings
Use # to create headings:
# Heading 1
## Heading 2
### Heading 3
#### Heading 4Text Formatting
| Style | Syntax | Example |
|---|---|---|
| Bold | **text** or __text__ |
Bold |
| Italic | *text* or _text_ |
Italic |
| Strikethrough | ~~text~~ |
|
| Inline code | code |
code |
Links
[link text](https://example.com)Lists
Unordered:
- Item 1
- Item 2
- Nested itemOrdered:
1. First item
2. Second itemChecklists:
- [x] Completed task
- [ ] Pending taskCode Blocks
Use triple backticks with an optional language identifier for syntax highlighting:
def hello():
print("Hello, letr.es!")Blockquotes
> This is a blockquote.
> It can span multiple lines.Tables
| Left | Centre | Right |
|------|--------|-------|
| Cell | Cell | Cell |Horizontal Rule
---Images
All formatting is rendered in real time in the editor — you can preview exactly how your post will look as you write.