
Fantom Digital Syntax Cheat Sheet
Ever wondered how to make your Fantom Digital
posts super fancy and clean? Want to center your images? Emphasis your points? Make bold statements? Look no further!
Fantom Digital's formatting is very similar to what you would see in Medium/Github/etc and is based on MarkDown syntax.
Fantom Digital Specifics
See this bar? Get used to using it, most formatting features can be accessed here.
- Link images
- Gifs
- Make Lists
- Post Emojis
- Quotes
- Code
Center Photos
[center]image[/center]
Upload Photos with a Simple Copy Paste

Markdown Cheat Sheet
Adapted from the The Markdown Guide!
This Markdown cheat sheet provides a quick overview of all the Markdown syntax elements. It can’t cover every edge case, so if you need more information about any of these elements, refer to the reference guides for basic syntax and extended syntax.
Basic Syntax
These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements.
Heading
### Heading
H1
H2
H3
# H1
## H2
### H3
bold text
**bold text**
italicized text
*italicized text*
Blockquote
> blockquote
Ordered List
- First item
- Second item
- Third item
1. First item
2. Second item
3. Third item
Unordered List
- First item
- Second item
- Third item
- First item
- Second item
- Third item
Code
code

Horizontal Rule
---
Link
Markdown Guide
Image


Centered Image
[center][/center]
Extended Syntax
These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements.
Table
Fenced Code Block
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}

Footnote
Here's a sentence with a footnote. [1]
[^1]: This is the footnote.
Strikethrough
The world is flat.
~~The world is flat.~~