create account

Markdown Cheatsheet, look like a pro. by skapaneas

View this thread on: hive.blogpeakd.comecency.com
· @skapaneas · (edited)
$0.10
Markdown Cheatsheet, look like a pro.
# Markdown Cheatsheet

[Kudos to]( https://github.com/adam-p) adam-p
Open source no copy rights.
Feel free to share, [here you can visit the git hub repository ](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet)
and here you can check the License: [CC-BY](https://creativecommons.org/licenses/by/3.0/)
 This is intended as a quick reference and showcase. For more complete info, see [John Gruber's original spec](http://daringfireball.net/projects/markdown/) and the Github-flavored Markdown info page.

Note that there is also a [Cheatsheet specific to Markdown Here](https://github.com/adam-p/markdown-here/wiki/Markdown-Here-Cheatsheet) if that's what you're looking for. You can also check out more[ Markdown tools.](https://github.com/adam-p/markdown-here/wiki/Other-Markdown-Tools)
Table of Contents

* Headers
* Emphasis
* Lists
* Links
* Images
* Code and Syntax Highlighting
* Tables
* Blockquotes
* Horizontal Rule
* Youtube videos

# Headers

# H1
## H2
### H3
#### H4
##### H5
###### H6

Alternatively, for H1 and H2, an underline-ish style:

Alt-H1
======

Alt-H2
------

H1
H2
H3
H4
H5
H6

Alternatively, for H1 and H2, an underline-ish style:
Alt-H1
Alt-H2

# Emphasis
```
Emphasis, aka italics, with *asterisks* or _underscores_.

Strong emphasis, aka bold, with **asterisks** or __underscores__.

Combined emphasis with **asterisks and _underscores_**.

Strikethrough uses two tildes. ~~Scratch this.~~
```
Emphasis, aka italics, with asterisks or underscores.

Strong emphasis, aka bold, with asterisks or underscores.

Combined emphasis with asterisks and underscores.

Strikethrough uses two tildes. Scratch this.

# Lists

(In this example, leading and trailing spaces are shown with with dots: ⋅)

```
1. First ordered list item
2. Another item
⋅⋅* Unordered sub-list. 
1. Actual numbers don't matter, just that it's a number
⋅⋅1. Ordered sub-list
4. And another item.

⋅⋅⋅You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).

⋅⋅⋅To have a line break without a paragraph, you will need to use two trailing spaces.⋅⋅
⋅⋅⋅Note that this line is separate, but within the same paragraph.⋅⋅
⋅⋅⋅(This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)

* Unordered list can use asterisks
- Or minuses
+ Or pluses
```
------
    First ordered list item
    Another item
        Unordered sub-list.
    Actual numbers don't matter, just that it's a number
        Ordered sub-list

    And another item.

    You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).

    To have a line break without a paragraph, you will need to use two trailing spaces.
    Note that this line is separate, but within the same paragraph.
    (This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)

    Unordered list can use asterisks
    Or minuses
    Or pluses
----------
# Links

There are two ways to create links.

```[I'm an inline-style link](https://www.google.com)

[I'm an inline-style link with title](https://www.google.com "Google's Homepage")

[I'm a reference-style link][Arbitrary case-insensitive reference text]

[I'm a relative reference to a repository file](../blob/master/LICENSE)

[You can use numbers for reference-style link definitions][1] 

Or leave it empty and use the [link text itself].

URLs and URLs in angle brackets will automatically get turned into links. 
http://www.example.com or <http://www.example.com> and sometimes 
example.com (but not on Github, for example).

Some text to show that the reference links can follow later.

[arbitrary case-insensitive reference text]: https://www.mozilla.org
[1]: http://slashdot.org
[link text itself]: http://www.reddit.com
```

[I'm an inline-style link](https://www.google.com)

[I'm an inline-style link with title](https://www.google.com "Google's Homepage")

[I'm a reference-style link][Arbitrary case-insensitive reference text]

[I'm a relative reference to a repository file](../blob/master/LICENSE)

[You can use numbers for reference-style link definitions][1] 

Or leave it empty and use the [link text itself].

URLs and URLs in angle brackets will automatically get turned into links. 
http://www.example.com or <http://www.example.com> and sometimes 
example.com (but not on Github, for example).

Some text to show that the reference links can follow later.

[arbitrary case-insensitive reference text]: https://www.mozilla.org
[1]: http://slashdot.org
[link text itself]: http://www.reddit.com

# Images

Here's our logo (hover to see the title text):

Inline-style: 
![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 1")

Reference-style: 
![alt text][logo]

[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 2"

Here's our logo (hover to see the title text):

Inline-style: alt text

Reference-style: alt text

# Code and Syntax Highlighting

Code blocks are part of the Markdown spec, but syntax highlighting isn't. However, many renderers -- like Github's and Markdown Here -- support syntax highlighting. Which languages are supported and how those language names should be written will vary from renderer to renderer. Markdown Here supports highlighting for dozens of languages (and not-really-languages, like diffs and HTTP headers); to see the complete list, and how to write the language names, see the highlight.js demo page.

```Inline `code` has `back-ticks around` it.```

Inline `code` has `back-ticks around `it.

Blocks of code are either fenced by lines with three back-ticks ```, or are indented with four spaces. I recommend only using the fenced code blocks -- they're easier and only they support syntax highlighting.

```javascript
var s = "JavaScript syntax highlighting";
alert(s);
```
 
```python
s = "Python syntax highlighting"
print s
```
 
```
No language indicated, so no syntax highlighting. 
But let's throw in a <b>tag</b>.
```

var s = "JavaScript syntax highlighting";
alert(s);

s = "Python syntax highlighting"
print s

No language indicated, so no syntax highlighting in Markdown Here (varies on Github). 
But let's throw in a <b>tag</b>.

# Tables

Tables aren't part of the core Markdown spec, but they are part of GFM and Markdown Here supports them. They are an easy way of adding tables to your email -- a task that would otherwise require copy-pasting from another application.

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

> 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.

---

Hyphens

***

Asterisks

___

Underscores

Three or more...

Hyphens

Asterisks

Underscores

# Youtube videos

They can't be added directly but you can add an image with a link to the video like this:
```
<a href="https://i.ytimg.com/vi/_4xMnmQlp6M/hqdefault.jpg?custom=true&w=336&h=188&stc=true&jpg444=true&jpgq=90&sp=68&sigh=IDNbbxqarp6EfCW5X74BbzFwSJE
" target="_blank"><img src="https://i.ytimg.com/vi/_4xMnmQlp6M/hqdefault.jpg?custom=true&w=336&h=188&stc=true&jpg444=true&jpgq=90&sp=68&sigh=IDNbbxqarp6EfCW5X74BbzFwSJE" 
alt="IMAGE ALT TEXT HERE" width="240" height="180" border="10" /></a>

Or, in pure Markdown, but losing the image sizing and border:

[![IMAGE ALT TEXT HERE](https://i.ytimg.com/vi/_4xMnmQlp6M/hqdefault.jpg?custom=true&w=336&h=188&stc=true&jpg444=true&jpgq=90&sp=68&sigh=IDNbbxqarp6EfCW5X74BbzFwSJE)](https://www.youtube.com/watch?v=_4xMnmQlp6M)
```
<a href="https://www.youtube.com/watch?v=_4xMnmQlp6M?custom=true&w=336&h=188&stc=true&jpg444=true&jpgq=90&sp=68&sigh=IDNbbxqarp6EfCW5X74BbzFwSJE
" target="_blank"><img src="https://i.ytimg.com/vi/_4xMnmQlp6M/hqdefault.jpg?custom=true&w=336&h=188&stc=true&jpg444=true&jpgq=90&sp=68&sigh=IDNbbxqarp6EfCW5X74BbzFwSJE" 
alt="IMAGE ALT TEXT HERE" width="240" height="180" border="10" /></a>

Or, in pure Markdown, but losing the image sizing and border:

[![IMAGE ALT TEXT HERE](https://i.ytimg.com/vi/_4xMnmQlp6M/hqdefault.jpg?custom=true&w=336&h=188&stc=true&jpg444=true&jpgq=90&sp=68&sigh=IDNbbxqarp6EfCW5X74BbzFwSJE)](https://www.youtube.com/watch?v=_4xMnmQlp6M)
Referencing a bug by #bugID in your git commit links it to the slip. For example #1.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorskapaneas
permlinkjkwzk-markdown-cheatsheet-look-like-a-pro
categorycheetsheet
json_metadata{"tags":["cheetsheet","cheatsheet","steemit","tutorial","help"],"image":["https://i.ytimg.com/vi/_4xMnmQlp6M/hqdefault.jpg?custom=true&w=336&h=188&stc=true&jpg444=true&jpgq=90&sp=68&sigh=IDNbbxqarp6EfCW5X74BbzFwSJE"],"links":["https://i.ytimg.com/vi/_4xMnmQlp6M/hqdefault.jpg?custom=true&w=336&h=188&stc=true&jpg444=true&jpgq=90&sp=68&sigh=IDNbbxqarp6EfCW5X74BbzFwSJE\n","https://i.ytimg.com/vi/_4xMnmQlp6M/hqdefault.jpg?custom=true&w=336&h=188&stc=true&jpg444=true&jpgq=90&sp=68&sigh=IDNbbxqarp6EfCW5X74BbzFwSJE)](https://www.youtube.com/watch?v=_4xMnmQlp6M","https://www.youtube.com/watch?v=_4xMnmQlp6M?custom=true&w=336&h=188&stc=true&jpg444=true&jpgq=90&sp=68&sigh=IDNbbxqarp6EfCW5X74BbzFwSJE\n"]}
created2016-08-15 11:32:12
last_update2016-08-15 12:37:12
depth0
children16
last_payout2016-09-15 00:42:06
cashout_time1969-12-31 23:59:59
total_payout_value0.080 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9,918
author_reputation126,745,380,231,329
root_title"Markdown Cheatsheet, look like a pro."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id815,230
net_rshares169,610,531,197
author_curate_reward""
vote details (27)
@atomica ·
looking everywhere for this..
properties (22)
authoratomica
permlinkre-skapaneas-jkwzk-markdown-cheatsheet-look-like-a-pro-20170525t062719637z
categorycheetsheet
json_metadata{"tags":["cheetsheet"],"app":"steemit/0.1"}
created2017-05-25 06:27:24
last_update2017-05-25 06:27:24
depth1
children0
last_payout2017-06-01 06:27:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation24,971,942,955
root_title"Markdown Cheatsheet, look like a pro."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,769,515
net_rshares0
@cheetah ·
Hi! I am a content-detection robot. This post is to help manual curators; I have NOT flagged you.
Here is similar content:
https://trello.com/c/y51WiCh3/256-copy-me-markdown-cheatsheet
👍  , , , , , ,
👎  
properties (23)
authorcheetah
permlinkre-jkwzk-markdown-cheatsheet-look-like-a-pro-20160815t113259
categorycheetsheet
json_metadata""
created2016-08-15 11:33:06
last_update2016-08-15 11:33:06
depth1
children6
last_payout2016-09-15 00:42:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length184
author_reputation942,693,160,055,713
root_title"Markdown Cheatsheet, look like a pro."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id815,236
net_rshares67,174,959,602
author_curate_reward""
vote details (8)
@atomica ·
Then why isnt there a page like this somewhere that is easy to find. my eyes hurt..
properties (22)
authoratomica
permlinkre-cheetah-re-jkwzk-markdown-cheatsheet-look-like-a-pro-20160815t113259-20170525t062656545z
categorycheetsheet
json_metadata{"tags":["cheetsheet"],"app":"steemit/0.1"}
created2017-05-25 06:27:00
last_update2017-05-25 06:27:00
depth2
children1
last_payout2017-06-01 06:27:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation24,971,942,955
root_title"Markdown Cheatsheet, look like a pro."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,769,503
net_rshares0
@ghostcode · (edited)
Exactly, their blog formatting page is basic bitch mode.
properties (22)
authorghostcode
permlinkre-atomica-re-cheetah-re-jkwzk-markdown-cheatsheet-look-like-a-pro-20160815t113259-20170817t041824719z
categorycheetsheet
json_metadata{"tags":["cheetsheet"],"app":"steemit/0.1"}
created2017-08-17 04:18:27
last_update2017-08-17 04:19:00
depth3
children0
last_payout2017-08-24 04:18:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation2,304,015,869,100
root_title"Markdown Cheatsheet, look like a pro."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,049,933
net_rshares0
@ladyluck ·
<center>
## [How get more readers for Your old steemit posts? Boost 🚀🚀your views](https://steemit.com/steemit/@ladyluck/how-get-more-readers-for-your-old-steemit-posts-boost-your-views)
##### Add recommended posts to the bottom of your steemit post . follow my blog to learn how it works . Let your Followers See All your steemit posts in each one post

[![img](https://steemit-production-imageproxy-upload.s3.amazonaws.com/DQmZKSxaKmozkm4JuKyaGp9X3JpN4nfmyB61QJgBXD4ZeL5)](https://steemit.com/steemit/@ladyluck/how-get-more-readers-for-your-old-steemit-posts-boost-your-views)

###  <center> Do you want to learn how to display many posts in  every Steemit post?  Boost 🚀🚀your views, followers, upvotes with this method. </center>
 
</center>
👍  
properties (23)
authorladyluck
permlinkre-cheetah-re-jkwzk-markdown-cheatsheet-look-like-a-pro-20160815t113259-20171009t125825284z
categorycheetsheet
json_metadata{"tags":["cheetsheet"],"image":["https://steemit-production-imageproxy-upload.s3.amazonaws.com/DQmZKSxaKmozkm4JuKyaGp9X3JpN4nfmyB61QJgBXD4ZeL5"],"links":["https://steemit.com/steemit/@ladyluck/how-get-more-readers-for-your-old-steemit-posts-boost-your-views"],"app":"steemit/0.1"}
created2017-10-09 12:58:27
last_update2017-10-09 12:58:27
depth2
children0
last_payout2017-10-16 12:58:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length743
author_reputation135,192,347,115
root_title"Markdown Cheatsheet, look like a pro."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,198,429
net_rshares1,872,120,142
author_curate_reward""
vote details (1)
@skapaneas · (edited)
It is open source at the git hub repository, it is free to copy paste and share with everyone.I made the appropriate changes so the post can appear properly on steemit.
 Everything here goes by open domain standards.
There is nothing offensive. just sharing open source info like everyone else.

Thanks.
👍  
properties (23)
authorskapaneas
permlinkre-cheetah-re-jkwzk-markdown-cheatsheet-look-like-a-pro-20160815t113259-20160815t113601660z
categorycheetsheet
json_metadata{"tags":["cheetsheet"]}
created2016-08-15 11:36:18
last_update2016-08-15 11:37:30
depth2
children2
last_payout2016-09-15 00:42:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length303
author_reputation126,745,380,231,329
root_title"Markdown Cheatsheet, look like a pro."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id815,261
net_rshares0
author_curate_reward""
vote details (1)
@atomica ·
btw the bots link sucks it froze my laptop.. i flagged it.. flag the bot guys its glitched out..
properties (22)
authoratomica
permlinkre-skapaneas-re-cheetah-re-jkwzk-markdown-cheatsheet-look-like-a-pro-20160815t113259-20170525t063345909z
categorycheetsheet
json_metadata{"tags":["cheetsheet"],"app":"steemit/0.1"}
created2017-05-25 06:33:48
last_update2017-05-25 06:33:48
depth3
children0
last_payout2017-06-01 06:33:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation24,971,942,955
root_title"Markdown Cheatsheet, look like a pro."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,769,664
net_rshares0
@trendwizard ·
This is what I needed...... I've been having problems transferring my blog over.
properties (22)
authortrendwizard
permlinkre-skapaneas-re-cheetah-re-jkwzk-markdown-cheatsheet-look-like-a-pro-20160815t113259-20160815t113941472z
categorycheetsheet
json_metadata{"tags":["cheetsheet"]}
created2016-08-15 11:39:39
last_update2016-08-15 11:39:39
depth3
children0
last_payout2016-09-15 00:42:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation4,017,444,893,361
root_title"Markdown Cheatsheet, look like a pro."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id815,302
net_rshares0
@doesntmatter ·
I can see no difference in the video links at the end...? there is no border and the sizes are the same...?
👍  
properties (23)
authordoesntmatter
permlinkre-skapaneas-jkwzk-markdown-cheatsheet-look-like-a-pro-20160815t125231509z
categorycheetsheet
json_metadata{"tags":["cheetsheet"]}
created2016-08-15 12:52:30
last_update2016-08-15 12:52:30
depth1
children0
last_payout2016-09-15 00:42:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length107
author_reputation33,496,135,154
root_title"Markdown Cheatsheet, look like a pro."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id816,115
net_rshares1,271,258,622
author_curate_reward""
vote details (1)
@kooshikoo · (edited)
Thank you, this is very helpful!
properties (22)
authorkooshikoo
permlinkre-skapaneas-jkwzk-markdown-cheatsheet-look-like-a-pro-20160815t113822856z
categorycheetsheet
json_metadata{"tags":["cheetsheet"]}
created2016-08-15 11:38:09
last_update2016-08-15 11:38:30
depth1
children0
last_payout2016-09-15 00:42:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation2,159,492,091,156
root_title"Markdown Cheatsheet, look like a pro."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id815,279
net_rshares0
@sucksess · (edited)
Hello. I have a question regarding a link into an ordered list. 

The []() does not work. Look:

<ol>
<li> First item - [link to GOOGLE](https://www.google.com)</li>
<li> Second item - [link to Steemit](https://steemit.com)</li> 
</ol>

How can you solve this problem?
👍  
properties (23)
authorsucksess
permlinkre-skapaneas-jkwzk-markdown-cheatsheet-look-like-a-pro-20180311t191251118z
categorycheetsheet
json_metadata{"tags":["cheetsheet"],"links":["https://www.google.com","https://steemit.com"],"app":"steemit/0.1"}
created2018-03-11 19:12:42
last_update2018-03-15 22:52:45
depth1
children5
last_payout2018-03-18 19:12:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length268
author_reputation-90,296,665
root_title"Markdown Cheatsheet, look like a pro."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id43,761,915
net_rshares0
author_curate_reward""
vote details (1)
@skapaneas · (edited)
Do you really think I am going to click on those scammy links huh? You deserve a 100% downvote. I hope you will enjoy it.
👍  
properties (23)
authorskapaneas
permlinkre-sucksess-re-skapaneas-jkwzk-markdown-cheatsheet-look-like-a-pro-20180312t123112964z
categorycheetsheet
json_metadata{"tags":["cheetsheet"],"app":"steemit/0.1"}
created2018-03-12 12:31:15
last_update2018-03-12 12:31:42
depth2
children4
last_payout2018-03-19 12:31:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length121
author_reputation126,745,380,231,329
root_title"Markdown Cheatsheet, look like a pro."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id43,897,083
net_rshares488,470,025
author_curate_reward""
vote details (1)
@sucksess ·
Those are indeed legit links. I did that example just to show that the link property doesn't work when the elements are put in the list mode!

That could be usefull for other people as well if they wanna insert links into lists.
properties (22)
authorsucksess
permlinkre-skapaneas-re-sucksess-re-skapaneas-jkwzk-markdown-cheatsheet-look-like-a-pro-20180315t225215769z
categorycheetsheet
json_metadata{"tags":["cheetsheet"],"app":"steemit/0.1"}
created2018-03-15 22:52:03
last_update2018-03-15 22:52:03
depth3
children3
last_payout2018-03-22 22:52:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length228
author_reputation-90,296,665
root_title"Markdown Cheatsheet, look like a pro."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,678,465
net_rshares0