This will probably come handy to you once you write your posts. It is the most complete cheat sheet I've found on Steemit. I hope it helps you!
# Biggest
## Bigger
### Big
#### Small
##### Smaller
###### Smallest
You can also use:
Biggest
====
or
Big
---
Live preview:
This one is tricky, one line break between sentences won't start a new line, two instead, will!
I love markdown
but it's a bit tricky
will result:
I love markdown but it's a bit tricky
but,
I love markdown
but it's a bit tricky
will result:
I love markdown
but it's a bit tricky
This issue is very **serious**, // bold text
I've read it on the *New York Times* // Italics
~~but it's not relevant~~ // Strikethrough
<center> I'm centered </center>
This issue is very serious, I've read it on the New York Times but it's not relevant
There are few simple ways to add a link to your post:
URLs and URLs in angle brackets will automatically get turned into links.
https://www.itamar.rocks or
[I'm a simple link](https://www.itamar.rocks)
[Hover me!](https://www.itamar.rocks "Hello!!!!")
There are few simple ways to add a link to your post:
URLs and URLs in angle brackets will automatically get turned into links.
https://www.itamar.rocks or https://www.itamar.rocks
Lists are simple! It's like 1-2-3 (for a numbered list!)
1. This markdown tutorial is the best
2. The first item on the list is true
3. Hello!
* I can use asterisk
+ or a plus
- or a minus!
You have to indent 4 spaces to create a sub-list. Easy, huh?
1. I'm his parent
1. I'm the first child
2. I'm the second child
2. I don't know them.
Adding an image is quite trivial,
https://kirkstrobeck.github.io/whatismarkdown.com/img/markdown.png
Let's say I want the text to be aside of the picture, EASY!
<div class="pull-right">
https://kirkstrobeck.github.io/whatismarkdown.com/img/markdown.png
text text text text
</div>
text text text text text text text text
more text more text more text more
text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text
more text more text more text more text more text more text more text more text more text
Colons can be used to align columns.
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
There must be at least 3 dashes separating each header cell.
The outer pipes (|) are optional, and you don't need to make the
raw Markdown line up prettily. You can also use inline Markdown.
Markdown | Less | Pretty
--- | --- | ---
*Still* | `renders` | **nicely**
1 | 2 | 3
Colons can be used to align columns.
| Tables | Are | Cool |
|---|---|---|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
There must be at least 3 dashes separating each header cell.
The outer pipes (|) are optional, and you don't need to make the
raw Markdown line up prettily. You can also use inline Markdown.
| Markdown | Less | Pretty |
|---|---|---|
| Still | renders | nicely |
| 1 | 2 | 3 |
> Blockquotes are very handy in email to emulate reply text.
> This line is part of the same quote.
Quote break.
> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote.
Blockquotes are very handy in email to emulate reply text.
This line is part of the same quote.
Quote break.
This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can put Markdown into a blockquote.
<hr/>
---
***
___
An inline `code` looks like this
and a multiline code looks like this
(without the \)
\```
loll
lo
\```
An inline code looks like this
and a multiline code looks like this
loll
lo
This tutorial was adaped and influenced by Adam Pritchard and is licensed under the CC-BY license. And is also an extension of this of @anomadsoul post