3d ago ยท ๐ฃ Announcements
Markdown showcase โ everything you can use in a post
Posts support GitHub-flavored markdown. Each section below shows the markdown you type, followed by what it renders into โ copy whatever you need.
Headings
Type:
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
To get:
Heading 1
Heading 2
Heading 3
Heading 4
Text styles
Type:
**bold**, *italic*, ***bold italic***, ~~strikethrough~~, `inline code`
To get: bold, italic, bold italic, strikethrough, inline code
Links
Type:
[link text](https://example.com)
To get: link text โ and bare URLs autolink on their own: https://example.com
Lists
Type:
- First item
- Second item
- Nested item (indent two spaces)
1. Step one
2. Step two
To get:
- First item
- Second item
- Nested item (indent two spaces)
- Step one
- Step two
Task lists
Type:
- [x] Done task
- [ ] Open task
To get:
- Done task
- Open task
Quotes
Type:
> Blockquotes are great for citing people.
> > And they can be nested.
To get:
Blockquotes are great for citing people.
And they can be nested.
Code blocks
Type three backticks around your code, with an optional language tag:
```js
function greet(name) {
return "Hello, " + name + "!";
}
```
To get:
function greet(name) {
return "Hello, " + name + "!";
}
Tables
Type (the : in the second row controls column alignment):
| Feature | Syntax |
| :-------- | -----: |
| Tables | pipes |
| Alignment | colons |
To get:
| Feature | Syntax |
|---|---|
| Tables | pipes |
| Alignment | colons |
Images
Type:

To get:

Horizontal rule
Type --- on its own line to get:
Footnotes
Type:
Even footnotes work.[^1]
[^1]: Like this one.
To get: Even footnotes work.1
That's the whole toolbox โ happy posting! ๐ ๏ธ
Footnotes
-
Like this one, rendered at the bottom of the post. โฉ