This Markdown cheat sheet provides a quick overview of the Markdown syntax elements to use in Voluntime organization descriptions.

Basic Syntax

Element Markdown Syntax Output
Heading # Header1
## Header2
### Header3

Header1

Header2

Header3

Bold **bold text** bold text
Italic *italicized text* italicized text
Blockquote > blockquote

blockquote

Numbered List 1. First item
2. Second item
3. Third item
  1. First item
  2. Second item
  3. Third item
Bullet Point List - First item
- Second item
- Third item
  • First item
  • Second item
  • Third item
Code `code` code
Horizontal Rule ---
Link [link title](https://mittaldev.com) link title
Image ![alt text](icon192.png) alt text
Table | Syntax | Description |
| --- | --- |
| Header | Title |
| Paragraph | Text |
Syntax Description
Header Title
Paragraph Text
Fenced Code Block ```
{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}
```
{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}
Strikethrough ~The world is flat.~ The world is flat.
Task List - [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
  • Write the press release
  • Update the website
  • Contact the media