# 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:  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: [](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: [](https://www.youtube.com/watch?v=_4xMnmQlp6M) Referencing a bug by #bugID in your git commit links it to the slip. For example #1.
author | skapaneas |
---|---|
permlink | jkwzk-markdown-cheatsheet-look-like-a-pro |
category | cheetsheet |
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"]} |
created | 2016-08-15 11:32:12 |
last_update | 2016-08-15 12:37:12 |
depth | 0 |
children | 16 |
last_payout | 2016-09-15 00:42:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.080 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9,918 |
author_reputation | 126,745,380,231,329 |
root_title | "Markdown Cheatsheet, look like a pro." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 815,230 |
net_rshares | 169,610,531,197 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acidsun | 0 | 81,885,940,449 | 100% | ||
ifttt | 0 | 544,858,459 | 100% | ||
ranko-k | 0 | 46,720,841,695 | 100% | ||
givemeyoursteem | 0 | 8,077,102,003 | 100% | ||
ben99 | 0 | 2,323,482,473 | 100% | ||
skapaneas | 0 | 14,135,499,878 | 100% | ||
doesntmatter | 0 | 1,271,258,622 | 100% | ||
sergei | 0 | 1,454,035,548 | 100% | ||
bdavid | 0 | 11,099,183,412 | 100% | ||
agapakos | 0 | 116,205,827 | 100% | ||
kooshikoo | 0 | 321,350,245 | 100% | ||
ioulia | 0 | 119,771,472 | 100% | ||
guineapig | 0 | 64,895,328 | 100% | ||
avtzis.petros | 0 | 65,389,508 | 100% | ||
elenirossidou | 0 | 63,311,170 | 100% | ||
keepdoodling | 0 | 417,896,642 | 100% | ||
runridefly | 0 | 92,353,710 | 100% | ||
trendwizard | 0 | 82,899,786 | 100% | ||
funkywanderer | 0 | 438,706,726 | 100% | ||
pierce-the-veil | 0 | 56,328,124 | 100% | ||
llawen | 0 | 65,583,292 | 100% | ||
masonmiler | 0 | 83,942,786 | 100% | ||
skapart | 0 | 55,626,437 | 100% | ||
occam | 0 | 54,067,605 | 100% | ||
atomica | 0 | 0 | 100% | ||
akrias | 0 | 0 | 100% | ||
diresoliloquy | 0 | 0 | 100% |
looking everywhere for this..
author | atomica |
---|---|
permlink | re-skapaneas-jkwzk-markdown-cheatsheet-look-like-a-pro-20170525t062719637z |
category | cheetsheet |
json_metadata | {"tags":["cheetsheet"],"app":"steemit/0.1"} |
created | 2017-05-25 06:27:24 |
last_update | 2017-05-25 06:27:24 |
depth | 1 |
children | 0 |
last_payout | 2017-06-01 06:27:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 24,971,942,955 |
root_title | "Markdown Cheatsheet, look like a pro." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,769,515 |
net_rshares | 0 |
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
author | cheetah |
---|---|
permlink | re-jkwzk-markdown-cheatsheet-look-like-a-pro-20160815t113259 |
category | cheetsheet |
json_metadata | "" |
created | 2016-08-15 11:33:06 |
last_update | 2016-08-15 11:33:06 |
depth | 1 |
children | 6 |
last_payout | 2016-09-15 00:42:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 184 |
author_reputation | 942,693,160,055,713 |
root_title | "Markdown Cheatsheet, look like a pro." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 815,236 |
net_rshares | 67,174,959,602 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ihash | 0 | 32,643,019,291 | 100% | ||
by24seven | 0 | 11,699,673,433 | 100% | ||
cheetah | 0 | 21,386,737,059 | 33% | ||
cheetah08 | 0 | 102,058,022 | 100% | ||
djinn | 0 | 824,370,305 | 100% | ||
cheetah09 | 0 | 101,798,848 | 100% | ||
acacia | 0 | 417,302,644 | 100% | ||
atomica | 0 | 0 | -100% |
Then why isnt there a page like this somewhere that is easy to find. my eyes hurt..
author | atomica |
---|---|
permlink | re-cheetah-re-jkwzk-markdown-cheatsheet-look-like-a-pro-20160815t113259-20170525t062656545z |
category | cheetsheet |
json_metadata | {"tags":["cheetsheet"],"app":"steemit/0.1"} |
created | 2017-05-25 06:27:00 |
last_update | 2017-05-25 06:27:00 |
depth | 2 |
children | 1 |
last_payout | 2017-06-01 06:27:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 24,971,942,955 |
root_title | "Markdown Cheatsheet, look like a pro." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,769,503 |
net_rshares | 0 |
Exactly, their blog formatting page is basic bitch mode.
author | ghostcode |
---|---|
permlink | re-atomica-re-cheetah-re-jkwzk-markdown-cheatsheet-look-like-a-pro-20160815t113259-20170817t041824719z |
category | cheetsheet |
json_metadata | {"tags":["cheetsheet"],"app":"steemit/0.1"} |
created | 2017-08-17 04:18:27 |
last_update | 2017-08-17 04:19:00 |
depth | 3 |
children | 0 |
last_payout | 2017-08-24 04:18:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 56 |
author_reputation | 2,304,015,869,100 |
root_title | "Markdown Cheatsheet, look like a pro." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,049,933 |
net_rshares | 0 |
<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 [](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>
author | ladyluck |
---|---|
permlink | re-cheetah-re-jkwzk-markdown-cheatsheet-look-like-a-pro-20160815t113259-20171009t125825284z |
category | cheetsheet |
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"} |
created | 2017-10-09 12:58:27 |
last_update | 2017-10-09 12:58:27 |
depth | 2 |
children | 0 |
last_payout | 2017-10-16 12:58:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 743 |
author_reputation | 135,192,347,115 |
root_title | "Markdown Cheatsheet, look like a pro." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,198,429 |
net_rshares | 1,872,120,142 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mjmitche | 0 | 1,872,120,142 | 100% |
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.
author | skapaneas |
---|---|
permlink | re-cheetah-re-jkwzk-markdown-cheatsheet-look-like-a-pro-20160815t113259-20160815t113601660z |
category | cheetsheet |
json_metadata | {"tags":["cheetsheet"]} |
created | 2016-08-15 11:36:18 |
last_update | 2016-08-15 11:37:30 |
depth | 2 |
children | 2 |
last_payout | 2016-09-15 00:42:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 303 |
author_reputation | 126,745,380,231,329 |
root_title | "Markdown Cheatsheet, look like a pro." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 815,261 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
atomica | 0 | 0 | 100% |
btw the bots link sucks it froze my laptop.. i flagged it.. flag the bot guys its glitched out..
author | atomica |
---|---|
permlink | re-skapaneas-re-cheetah-re-jkwzk-markdown-cheatsheet-look-like-a-pro-20160815t113259-20170525t063345909z |
category | cheetsheet |
json_metadata | {"tags":["cheetsheet"],"app":"steemit/0.1"} |
created | 2017-05-25 06:33:48 |
last_update | 2017-05-25 06:33:48 |
depth | 3 |
children | 0 |
last_payout | 2017-06-01 06:33:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 96 |
author_reputation | 24,971,942,955 |
root_title | "Markdown Cheatsheet, look like a pro." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,769,664 |
net_rshares | 0 |
This is what I needed...... I've been having problems transferring my blog over.
author | trendwizard |
---|---|
permlink | re-skapaneas-re-cheetah-re-jkwzk-markdown-cheatsheet-look-like-a-pro-20160815t113259-20160815t113941472z |
category | cheetsheet |
json_metadata | {"tags":["cheetsheet"]} |
created | 2016-08-15 11:39:39 |
last_update | 2016-08-15 11:39:39 |
depth | 3 |
children | 0 |
last_payout | 2016-09-15 00:42:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 4,017,444,893,361 |
root_title | "Markdown Cheatsheet, look like a pro." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 815,302 |
net_rshares | 0 |
I can see no difference in the video links at the end...? there is no border and the sizes are the same...?
author | doesntmatter |
---|---|
permlink | re-skapaneas-jkwzk-markdown-cheatsheet-look-like-a-pro-20160815t125231509z |
category | cheetsheet |
json_metadata | {"tags":["cheetsheet"]} |
created | 2016-08-15 12:52:30 |
last_update | 2016-08-15 12:52:30 |
depth | 1 |
children | 0 |
last_payout | 2016-09-15 00:42:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 107 |
author_reputation | 33,496,135,154 |
root_title | "Markdown Cheatsheet, look like a pro." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 816,115 |
net_rshares | 1,271,258,622 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
doesntmatter | 0 | 1,271,258,622 | 100% |
Thank you, this is very helpful!
author | kooshikoo |
---|---|
permlink | re-skapaneas-jkwzk-markdown-cheatsheet-look-like-a-pro-20160815t113822856z |
category | cheetsheet |
json_metadata | {"tags":["cheetsheet"]} |
created | 2016-08-15 11:38:09 |
last_update | 2016-08-15 11:38:30 |
depth | 1 |
children | 0 |
last_payout | 2016-09-15 00:42:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 2,159,492,091,156 |
root_title | "Markdown Cheatsheet, look like a pro." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 815,279 |
net_rshares | 0 |
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?
author | sucksess |
---|---|
permlink | re-skapaneas-jkwzk-markdown-cheatsheet-look-like-a-pro-20180311t191251118z |
category | cheetsheet |
json_metadata | {"tags":["cheetsheet"],"links":["https://www.google.com","https://steemit.com"],"app":"steemit/0.1"} |
created | 2018-03-11 19:12:42 |
last_update | 2018-03-15 22:52:45 |
depth | 1 |
children | 5 |
last_payout | 2018-03-18 19:12:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 268 |
author_reputation | -90,296,665 |
root_title | "Markdown Cheatsheet, look like a pro." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 43,761,915 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
skapaneas | 0 | 0 | 0% |
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.
author | skapaneas |
---|---|
permlink | re-sucksess-re-skapaneas-jkwzk-markdown-cheatsheet-look-like-a-pro-20180312t123112964z |
category | cheetsheet |
json_metadata | {"tags":["cheetsheet"],"app":"steemit/0.1"} |
created | 2018-03-12 12:31:15 |
last_update | 2018-03-12 12:31:42 |
depth | 2 |
children | 4 |
last_payout | 2018-03-19 12:31:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 121 |
author_reputation | 126,745,380,231,329 |
root_title | "Markdown Cheatsheet, look like a pro." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 43,897,083 |
net_rshares | 488,470,025 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sucksess | 0 | 488,470,025 | 100% |
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.
author | sucksess |
---|---|
permlink | re-skapaneas-re-sucksess-re-skapaneas-jkwzk-markdown-cheatsheet-look-like-a-pro-20180315t225215769z |
category | cheetsheet |
json_metadata | {"tags":["cheetsheet"],"app":"steemit/0.1"} |
created | 2018-03-15 22:52:03 |
last_update | 2018-03-15 22:52:03 |
depth | 3 |
children | 3 |
last_payout | 2018-03-22 22:52:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 228 |
author_reputation | -90,296,665 |
root_title | "Markdown Cheatsheet, look like a pro." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 44,678,465 |
net_rshares | 0 |