As you probably figured out long before this post, Steemit posts use markdown for formatting rather than traditional HTML. Markdown was developed by John Gruber at Daring Fireball, a very popular Apple advocate. The advantage of using markdown is its ease of use and quick creation of formatted text for use on the web. I suspect most users learn the absolute minimum amount of markdown to post on Steemit. Markdown is really easy to learn and just as easy to master, there is no need to shy away from digging in. This post is designed to walk you through the important features of markdown that every Steemian should know to produce **awesome** content on Steemit while creating quickly and efficiently. Knowing these by heart will make your posts look better but also save a lot of time. I will also talk about a few formatting suggestions I frequently use when producing content for Steem. # Headers Almost every post will benefit from headers, this allows you to visually break down posts into sections and avoids the initial *information overload* most long-form posts create. **Headers** correspond directly to HTML H tags, typically H1, H2, H3, H6 tags to create similar sections in HTML content. Header tags have always had some influence on Search Engine Optimization (SEO) but more importantly on readability. You want to use header tags to highlight keys sections of your posts and engage your audience. The most common header tag is the H1 which is simply a `#` in markdown. If you want to highlight a section of your post you would use the `#` *pound sign* at the start of a line. # This is the most common header There are six headers available, each one is smaller than the last. To create a smaller header, just add `#` to your header. # Header 1 `#` ## Header 2 `##` ### Header 3 `###` #### Header 4 `#####` ##### Header 5 `#####` ###### Header 6 `######` </br> In the SEO & HTML world, it is generally accepted you only really need H1, H2, H3, and H6. H4 and H5 are rarely used, but they are there if you need them. You may notice something with this paragraph, I am kind of *glued* to the last header. This is one of the *features* of headers, nice tight spacing with the content they head. The easiest solution is to put a line break `</br>` before the paragraph if you don't want this. This will provide spacing between the header and your content. As you can see here:  You can also center a header, which I will show you in the section *Formatting*. # Emphasis Emphasis is the "air quotes" of markdown and HTML. <center></center> They are *important* for **highlighting** or "emphasizing" keywords. Think of when your mother and father would annunciate words when speaking to you. Although there are two ways to do emphasis `*` and `_` I suggest only using the `*` syntax as that is the most popular and clearest. There are two emphasis options, **bold** and *italics*. Use `**bold**` syntax to turns something *bold* <center></center> *Italics* is the same format but instead of two * you use one. `*this is italics*` There is also ~~strikethrough~~ which is done with:  You may be wondering at this point why some of these examples are not showing the formatting. This is a cool feature I'll cover later that allows you to inline code characters. It can also be used to avoid triggering formatting. As a final note, you can **embed *italics* inside of bold** or vice versa. This isn't used much but good to know. # Lists There are two types of lists; **ordered list** and **unordered list**. The most popular is the unordered list, which is typically referred to as *bullet points*. To do an unordered list, you simply use `*` in front of your items. ###### Shopping List * Eggs * Thick Toast * Cinnamon * Powered Sugar * Maple Syrup This was created using the following syntax:  An ordered list is the same idea, just using numbers. ###### Creating French Toast 1. beat eggs 2. add cinnamon 3. dip toast 4. fry toast 5. cover with powered cinnamon & drown in maple syrup  Like *emphasis* you can combine these with any combination * Succeed on Steemit 1. add value 2. post regularly 3. engage audiance  # Quotes `Aka blockquotes` This is really simple and most people probably already know this. > Life is 10% what happens to you and 90% how you react to it. <sub>Charles R. Swindoll</sub> To create a blockquote, just need to add `>` to the start of the line. If you have multiple paragraphs you will need to use a `>` for each line or you get a new line without the blockquote and may run into formatting issues. You may notice the name is a bit smaller, this is a subscript using `<sub></sub>` tags that work really nice for citation. You will notice I do it for **source** for my images. You can see them both in action here:  # Linking Linking is really easy and in most cases completely automatic. There is also a special link for usernames where you can just type in the username and Steemit will automatically hyperlink to their profile page. For example @themarkymark. One thing I think confuses people with this feature is punctuation. You can use commas, periods, and any other punctuation immediately after the username, and it will still be hyperlinked.  If you want to hyperlink something, but have a customized anchor text then you would use syntax similar to images but without the leading !. [awesome witness](https://steemit.com/@themarkymark)  # Images If you found this post, you most likely already know how to do images on Steemit, but for the sake of completeness, I will cover them. There are also a few tricks you can do I will show you. `` Alt text is primarily an SEO feature but also is used for text-only browsers. You can also center images by enclosing it with `<center></center>` tags. One trick you may or may not know is to hyperlink an image. For example, I made a post yesterday talking about something I think is a big issue here on Steemit, *entitlement*. Say I want to provide a link to that post, but I want to use the `CC0` image I got from Pixabay and have the image direct you to the post. This is a bit confusing but is really easy to do. First, you want to upload the image to Steemit like you normally would do. Then you surround that image with `[ ]` to act similar to the **alt text** of an image and then use `( )` to surround the link. # [You are not entitled to an audience, you need to earn it!](https://steemit.com/steemit/@themarkymark/you-are-not-entitled-to-an-audience-you-need-to-earn-it) [](https://steemit.com/steemit/@themarkymark/you-are-not-entitled-to-an-audience-you-need-to-earn-it) You can see how this came together here:  This uses a combination of the *image linking* and *URL linking* functionality. # Formatting Markdown has some formatting but it lacks certain features. The most common are: * Centering `<center> </center>` * Line Break `</br>` * Sub script `<sub></sub>` If you want to center a header, you need to use the header `#` symbol on both sides of the center. # <center> This is a centred H1 header </center> #  You can also use `<table>` although for simple tables there is a special markdown syntax you can use instead. # Horizontal lines Horizontal lines can be created using `***`, `___`, or `---` but I suggest using `---` syntax for consistency. --- Horizontal lines are good for breaking up sections inside of a header tag. It doesn't always work and I find it works best for small sections using a horizontal line before and after like this section. --- One thing you might notice when using horizontal lines, if you do not leave a new line you will get some wierd formatting, typically unexpected H1 type header. If you see headers where you don't expect them, check to see if you forgot to leave a new line on top/bottom of your horizontal rule. # Code Formatting If you are a programmer and want to highlight some awesome code you want to share, you can use the standard github syntax for code. There are two ways to do this, lead a line with four spaces, or surround it with ``` ```. Steemit doesn't support syntax highlighting like Github does. ``` function test() { console.log("look ma’, no spaces"); } ```  This can also be used to highlight some preformatted text. # Tables Creating simple tables is really easy with markdown and not a commonly seen feature. A simple table looks like this: First Header | Second Header ------------ | ------------- Content cell 1 | Content cell 2 Content column 1 | Content column 2 To create this table is as simple as:  # Inline Code Characters A feature that came real handy in this article is the ability to show formatting syntax inline by using the ` character to avoid triggering the formatting. This is not the standard apostrophe but the one under the ESC key that is shared with the tidle key `~`. This will allow you to show special formatting sytnax without triggering formatting. I also use it to highly commands typically entered in terminal windows like on Linux. For example: `sudo apt update`  # Cool online markdown editors I think that covers most everything you will need to make *awesome* posts on Steemit. There are many reasons you may want to use a third party markdown editor instead of Steemit's post window. One frustration I have personally is how Steemit will butcher Grammarly functionality, a popular plugin for spell checking/grammar checking when typing in fields. Due to unknown reasons, Steemit is the only site that it doesn't work properly on and will cause text to revert back to pre-correction state and show incorrect location of grammar errors. I also like to share a post with friends or colleagues before posting and using a collaborative editor will help do this easily. There are three online markdown editors I am familar with, I have used them all but prefer Hackmd.io as it has the best feature set and only one issue. They all have issues, but Hackmd.io only has one that frustrates me. It will not display images that are enclosed in `<center>` tags, a feature I use frequently. Hackmd also lacks the ability to sync with services like Google Drive & Dropbox but does save your markdown files via link to Github profile. * https://hackmd.io * https://stackedit.io/editor * https://dillinger.io/ Hope this helps, if I left anything out, let me me know!  <sub>[Source](http://mikemclin.net/markdown-syntax-language/)</sub> <center>[)](http://www.steemit.com/@buildawhale)</center> [](https://steemit.com/~witnesses)
author | themarkymark |
---|---|
permlink | markdown-101-how-to-make-kick-ass-posts-on-steemit |
category | steemit |
json_metadata | {"tags":["steemit","writing","technology","howto","ocd-resteem"],"users":["themarkymark"],"image":["https://steemitimages.com/DQmdy6oYwLrbhHvVpf7KRAkxjvUpLzBKZiRMNxohS2e9FYn/image.png","https://steemitimages.com/DQmRhLXVeC247nwkPDAJrSCKjSpvswdPztGVAtpBDZ6o56H/giphy.gif","https://steemitimages.com/DQmeK5p1Jr4mrwPx9Ce9VYbvVjHDd9hteT9Q6yVnpnMB2p5/giphy.gif","https://steemitimages.com/DQmVAyVaKVUXm511WhSFfuoTUNDXAbXAvZrXw4TC1e4fYav/image.png","https://steemitimages.com/DQmb47vajmcGrE4VTFfcL2vajLL8SjAfSAFossZRbK4rjaP/image.png","https://steemitimages.com/DQmdaDUmZ5gW64EP7QPq4UyNvZXux7LgZYVJp3ht3gfN1yU/image.png","https://steemitimages.com/DQmPfzk1CGJTRQkeGHr5gUiZUnuNPBuQLywZJczdWJdYcir/image.png","https://steemitimages.com/DQmZS5d8CHnsnZicZf6yGQTgS8JYTrygCs2xdcZEtDpHvmt/image.png","https://steemitimages.com/DQmUa9nRZPbB2HNWavmgLoLa1Dw5jj6ch8BEWNCcGzu17aQ/image.png","https://steemitimages.com/DQmV3NDdxtnGRcnntYMdPro6DYrtZzHNSwMetPm4uF8TEhc/image.png","https://steemitimages.com/DQmXXqSScy5WpFPncpJigs2EdntpVDVWBfpcCN1yAcfRWYQ/image.png","https://steemitimages.com/DQmc1faV1XximGfCrG56GgaYhwj7xf2ktB7dpUyXdR9rLAk/image.png","https://steemitimages.com/DQmUErnnt29qjAxvUqzbkbnHKJLXYJSCe4vgp5apitRWQTv/image.png","https://steemitimages.com/DQmYFX7Jmjw2oVvAyQaQ1wQtdSaHem3KWhWRGuSWp7etfJr/image.png","https://steemitimages.com/DQme3SHAJKnAy9FNJxhAVDTd8nwxeMyq8uoXCAvdC66UbrN/image.png","https://steemitimages.com/DQmQL4mUZM4VJSm7Pwzwaj3gsX5GhNaM929r1yZUYZzHkXz/image.png","https://steemitimages.com/DQmZ8U4qP7ZNm9RWy2A6XGJmwotbogA4JnguPvFaa97r3Bb/image.png","","https://steemitimages.com/DQmPkQhAQceC7aHr4Gy5GKv7LMoiy47P7PyaNCeZBHMpFke/white-bg-with-drop-shadow.gif"],"links":["https://steemit.com/@themarkymark","https://steemit.com/steemit/@themarkymark/you-are-not-entitled-to-an-audience-you-need-to-earn-it","https://hackmd.io","https://stackedit.io/editor","https://dillinger.io/","http://mikemclin.net/markdown-syntax-language/","http://www.steemit.com/@buildawhale","https://steemit.com/~witnesses"],"app":"steemit/0.1","format":"markdown"} |
created | 2017-11-10 12:38:42 |
last_update | 2017-11-14 11:26:33 |
depth | 0 |
children | 90 |
last_payout | 2017-11-17 12:38:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 56.042 HBD |
curator_payout_value | 8.980 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12,371 |
author_reputation | 1,774,102,088,090,908 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,956,369 |
net_rshares | 30,361,077,811,071 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nextgen11 | 0 | 361,111,121 | 25% | ||
nextgen10 | 0 | 361,111,125 | 25% | ||
nextgen1 | 0 | 541,895,123 | 25% | ||
nextgen12 | 0 | 361,111,117 | 25% | ||
nextgen6 | 0 | 360,994,816 | 25% | ||
nextgen2 | 0 | 541,895,086 | 25% | ||
nextgen13 | 0 | 361,111,113 | 25% | ||
nextgen7 | 0 | 360,994,814 | 25% | ||
nextgen3 | 0 | 541,895,117 | 25% | ||
nextgen16 | 0 | 360,994,811 | 25% | ||
yomamasofat | 0 | 360,980,378 | 25% | ||
charlesmanson | 0 | 1,446,423,906 | 25% | ||
jacktheripper | 0 | 722,801,219 | 25% | ||
jeffreydahmer | 0 | 722,808,381 | 25% | ||
berniesanders | 0 | 17,441,806,211 | 25% | ||
donalddrumpf | 0 | 360,988,235 | 25% | ||
wackou | 0 | 190,694,497,923 | 5% | ||
xeldal | 0 | 630,151,980,104 | 12.5% | ||
pharesim | 0 | 103,733,733,745 | 0.75% | ||
chatterbox | 0 | 361,086,068 | 25% | ||
kushed | 0 | 430,449,371,546 | 25% | ||
nextgencrypto100 | 0 | 360,994,839 | 25% | ||
nextgencrypto | 0 | 1,121,651,793,348 | 25% | ||
nextgencrypto120 | 0 | 360,994,826 | 25% | ||
nextgencrypto110 | 0 | 360,994,833 | 25% | ||
nextgencrypto111 | 0 | 360,994,829 | 25% | ||
nextgencrypto101 | 0 | 360,994,835 | 25% | ||
ozmaster | 0 | 693,673,270 | 5% | ||
nextgencrypto121 | 0 | 360,994,822 | 25% | ||
stone1 | 0 | 4,339,008,567 | 25% | ||
steemychicken1 | 0 | 72,804,809,747 | 25% | ||
fminer05 | 0 | 27,771,976,469 | 100% | ||
theterrorist | 0 | 361,118,008 | 25% | ||
steemittroll | 0 | 361,086,063 | 25% | ||
theghost | 0 | 361,081,974 | 25% | ||
thepresident | 0 | 360,988,224 | 25% | ||
sockpuppet | 0 | 361,086,059 | 25% | ||
danknugs | 0 | 6,470,118,601 | 25% | ||
elchapo | 0 | 722,815,602 | 25% | ||
steemservices | 0 | 82,684,112,843 | 25% | ||
steemservices1 | 0 | 722,866,056 | 25% | ||
muhammad | 0 | 360,987,576 | 25% | ||
joseph | 0 | 179,122,877,628 | 25% | ||
steemservices3 | 0 | 722,873,244 | 25% | ||
aizensou | 0 | 96,252,030,988 | 25% | ||
steemservices5 | 0 | 722,873,230 | 25% | ||
b0y2k | 0 | 261,532,500,608 | 25% | ||
stoner19 | 0 | 11,143,603,737 | 25% | ||
sativa | 0 | 503,706,527 | 25% | ||
indica | 0 | 722,856,759 | 25% | ||
fractalnode | 0 | 3,623,364,256 | 12% | ||
patrice | 0 | 17,303,226,529 | 20% | ||
richman | 0 | 199,460,812,026 | 25% | ||
liquidity | 0 | 721,529,689 | 25% | ||
thecryptodrive | 0 | 71,798,850,038 | 20% | ||
stephen-somers | 0 | 6,202,635,523 | 10% | ||
cheftony | 0 | 304,766,691 | 1% | ||
romaan-namoor | 0 | 28,419,645,976 | 91% | ||
the.bot | 0 | 721,522,511 | 25% | ||
spiry-btc | 0 | 299,946,457 | 5% | ||
roelandp | 0 | 206,918,993,766 | 5% | ||
fabio | 0 | 257,912,765,276 | 25% | ||
strangerarray | 0 | 8,572,616,333 | 25% | ||
livingfree | 0 | 62,419,831,897 | 1% | ||
anyx | 0 | 259,550,574,173 | 25% | ||
pkattera | 0 | 472,668,453,053 | 25% | ||
knozaki2015 | 0 | 430,764,674,885 | 25% | ||
hagie | 0 | 33,197,707,592 | 25% | ||
gavinthegreat | 0 | 27,385,586,758 | 100% | ||
coinbar | 0 | 5,391,084,567 | 25% | ||
ozchartart | 0 | 9,971,701,207 | 5% | ||
capitalism | 0 | 254,987,412 | 25% | ||
thebluepanda | 0 | 47,473,282,184 | 25% | ||
yoshiko | 0 | 32,041,858,488 | 25% | ||
thisisbenbrick | 0 | 3,917,186,301 | 25% | ||
sirwinchester | 0 | 63,446,827,202 | 25% | ||
darthnava | 0 | 244,230,394,991 | 20% | ||
thebotkiller | 0 | 1,051,089,304 | 25% | ||
theconnoisseur | 0 | 721,529,696 | 25% | ||
thecurator | 0 | 721,529,683 | 25% | ||
kenistyles | 0 | 9,957,367,388 | 11% | ||
ivet | 0 | 29,299,048,893 | 51% | ||
einsteinpotsdam | 0 | 7,720,353,633 | 25% | ||
holoz0r | 0 | 435,771,093 | 10% | ||
zahnspange | 0 | 593,247,762,273 | 25% | ||
thecyclist | 0 | 14,271,891,523 | 25% | ||
steemsquad | 0 | 2,537,239,718 | 25% | ||
allesgruen | 0 | 3,402,881,950 | 25% | ||
lifeisawesome | 0 | 891,039,076 | 25% | ||
dannystravels | 0 | 8,313,741,186 | 25% | ||
largelyuseless | 0 | 2,947,038,695 | 100% | ||
jerryblanceton | 0 | 5,928,293,364 | 25% | ||
platinum-blue | 0 | 15,426,583,653 | 25% | ||
bvltva | 0 | 0 | 100% | ||
timbernana | 0 | 10,319,911,217 | 25% | ||
sherlockcupid | 0 | 28,078,375,579 | 25% | ||
reactivator | 0 | 59,180,518 | 100% | ||
dark.horse | 0 | 5,067,903,850 | 25% | ||
mangos | 0 | 634,461,479,997 | 19% | ||
contentking | 0 | 0 | 100% | ||
judasp | 0 | 95,504,002,541 | 100% | ||
adventureevryday | 0 | 8,336,895,243 | 22.5% | ||
illbeyourfriend | 0 | 5,375,828,355 | 25% | ||
engagement | 0 | 1,144,167,686,469 | 25% | ||
generikat | 0 | 42,477,563,459 | 25% | ||
anthonyadavisii | 0 | 0 | 100% | ||
steemizen | 0 | 17,437,413,726 | 50% | ||
i-gordan | 0 | 17,906,683,980 | 25% | ||
iflagtrash | 0 | 471,375,381,789 | 25% | ||
steemcenterwiki | 0 | 4,379,720,570 | 100% | ||
jdevora | 0 | 2,813,328,721 | 100% | ||
firesteem | 0 | 2,049,356,121 | 100% | ||
ripperone | 0 | 965,850,430,641 | 21% | ||
duranzo89 | 0 | 0 | 100% | ||
theyeti | 0 | 112,253,394,231 | 25% | ||
piscaryk | 0 | 1,488,217,071 | 100% | ||
thedumpster | 0 | 6,029,586,538 | 25% | ||
yougotflagged | 0 | 2,485,502,858 | 25% | ||
buzzbeergeek | 0 | 23,495,301,974 | 25% | ||
randomthoughts | 0 | 203,335,477,979 | 25% | ||
nikolina | 0 | 34,713,613,306 | 100% | ||
bigdaddy | 0 | 24,425,003,526 | 25% | ||
kingsmind | 0 | 3,198,295,088 | 25% | ||
nepd | 0 | 15,622,931,453 | 100% | ||
iamsgr | 0 | 6,242,351,667 | 37% | ||
e13c7r0n | 0 | 1,119,142,082 | 100% | ||
card1001 | 0 | 122,572,073 | 100% | ||
nicnas | 0 | 13,256,874,419 | 50% | ||
ozoo | 0 | 0 | 100% | ||
romedog | 0 | 304,472,208,990 | 25% | ||
anejosua | 0 | 2,308,948,045 | 25% | ||
sunshinetraveler | 0 | 12,483,416,070 | 25% | ||
thethreehugs | 0 | 566,915,524 | 100% | ||
spg | 0 | 10,415,784,253 | 25% | ||
juanfb | 0 | 0 | 100% | ||
freefuture | 0 | 6,780,560,739 | 25% | ||
diogogomes | 0 | 0 | 82% | ||
kinakomochi | 0 | 10,471,533,019 | 25% | ||
manishmike10 | 0 | 6,451,980,449 | 26% | ||
kaushikchand71 | 0 | 0 | 100% | ||
derrick829 | 0 | 34,003,794,196 | 2.5% | ||
daydreams4rock | 0 | 9,130,605,115 | 40% | ||
suzanrs | 0 | 0 | 100% | ||
brian.rrr | 0 | 8,288,670,346 | 50% | ||
professorbromide | 0 | 5,495,902,285 | 25% | ||
steempowerpics | 0 | 32,016,384,353 | 100% | ||
sammosk | 0 | 64,029,270,876 | 25% | ||
mobile-joat | 0 | 642,641,912 | 100% | ||
biancajapan | 0 | 8,463,296,709 | 25% | ||
windrockswater | 0 | 268,766,555 | 100% | ||
thedelegator | 0 | 66,554,126,174 | 25% | ||
ainshval | 0 | 0 | 100% | ||
cryptopie | 0 | 79,153,430,393 | 55% | ||
glitchout01 | 0 | 422,823,859 | 100% | ||
minnowbooster | 0 | 18,328,951,204,638 | 15% | ||
vibvir | 0 | 2,455,943,083 | 100% | ||
steemitbc | 0 | 19,289,720,577 | 20% | ||
krazykrista | 0 | 23,350,188,707 | 100% | ||
pfeilerfam5 | 0 | 3,062,767,931 | 100% | ||
edwardthomson | 0 | 0 | 100% | ||
thesloth | 0 | 1,909,268,336 | 25% | ||
duekie | 0 | 66,545,254 | 50.08% | ||
beet | 0 | 3,273,027,605 | 10% | ||
re-engineer | 0 | 9,078,975,430 | 100% | ||
bityobit | 0 | 1,468,541,891 | 100% | ||
choosefreedom | 0 | 4,539,852,915 | 100% | ||
richforever | 0 | 4,679,041,727 | 100% | ||
ata27 | 0 | 1,737,074,071 | 100% | ||
originalworks | 0 | 6,511,426,516 | 1.5% | ||
laurabean | 0 | 0 | 100% | ||
jokossita | 0 | 3,496,338,163 | 100% | ||
djlethalskillz | 0 | 3,561,104,825 | 100% | ||
lunyt | 0 | 466,389,770 | 100% | ||
justinlooney | 0 | 0 | 100% | ||
endymionoriax | 0 | 0 | 100% | ||
casinogames | 0 | 261,228,661 | 100% | ||
peppe | 0 | 6,173,044,250 | 29% | ||
nogalert | 0 | 2,781,370,523 | 25% | ||
raptordashzero | 0 | 1,875,035,130 | 100% | ||
ghettodweller | 0 | 10,351,112,090 | 25% | ||
ccasino | 0 | 286,886,029 | 100% | ||
leveuf | 0 | 310,342,760 | 100% | ||
hairshares | 0 | 857,336,975,859 | 100% | ||
sachgsach | 0 | 0 | 100% | ||
mballesteros | 0 | 70,882,970 | 5% | ||
videogeek | 0 | 297,621,610 | 10% | ||
cyncarlton | 0 | 2,788,297,804 | 100% | ||
leximiss | 0 | 0 | 100% | ||
intuitivejakob | 0 | 7,789,577,511 | 100% | ||
mimino16 | 0 | 367,245,900 | 100% | ||
blockgators | 0 | 6,845,148,316 | 5% | ||
chobeshovo | 0 | 478,791,914 | 100% | ||
jeeandmee | 0 | 737,950,253 | 100% | ||
rambeesbd | 0 | 456,681,374 | 100% | ||
joeyp978 | 0 | 723,986,022 | 100% | ||
best-trip-eva | 0 | 0 | 100% | ||
wenom38 | 0 | 571,023,070 | 100% | ||
chiefcrappster | 0 | 1,251,370,223 | 25% | ||
phrilten | 0 | 0 | 100% | ||
saintjames | 0 | 0 | 100% | ||
rjd | 0 | 2,000,443,476 | 100% | ||
gheghenrv | 0 | 348,723,862 | 100% | ||
plushzilla | 0 | 623,449,151 | 100% | ||
rocketsteem | 0 | 600,253,131 | 100% | ||
rikip94 | 0 | 919,769,929 | 100% | ||
dannocera | 0 | 0 | 100% | ||
pankaj121 | 0 | 122,355,619 | 100% | ||
theexplorer | 0 | 1,609,400,490 | 100% | ||
imran069 | 0 | 1,182,087,525 | 100% | ||
gjcooper | 0 | 1,024,309,704 | 100% | ||
larryt20 | 0 | 600,313,738 | 100% | ||
tpkidkai | 0 | 1,028,762,196 | 100% | ||
lessonseighteen | 0 | 365,573,465 | 100% | ||
haima | 0 | 991,348,017 | 100% | ||
bonaventurehoste | 0 | 1,160,545,761 | 100% | ||
luisgob | 0 | 58,027,282 | 100% | ||
wahab9107 | 0 | 243,714,538 | 100% | ||
loler555 | 0 | 486,662,360 | 100% | ||
johnpatrichmomo | 0 | 876,211,694 | 100% | ||
mdrahamatkhan | 0 | 522,245,362 | 100% | ||
kohbohgong | 0 | 179,884,512 | 100% | ||
simi420 | 0 | 562,864,426 | 100% | ||
bit2musictoken | 0 | 52,226,381 | 100% | ||
musicdev | 0 | 1,160,545,065 | 100% | ||
amarteyemmanuel | 0 | 1,871,607,969 | 100% | ||
geekpowered | 0 | 1,137,333,924 | 100% | ||
nila47 | 0 | 156,673,550 | 100% | ||
officialsiddiq | 0 | 1,160,544,807 | 100% | ||
robotics101 | 0 | 1,143,136,634 | 100% | ||
ageo | 0 | 1,119,925,733 | 100% | ||
squitchpichou | 0 | 382,979,784 | 100% | ||
uzmask116 | 0 | 841,394,974 | 100% | ||
shif | 0 | 1,160,544,712 | 100% | ||
jigsaw | 0 | 1,148,939,219 | 100% | ||
shopon1kb | 0 | 1,108,320,056 | 100% | ||
maelic | 0 | 1,038,686,983 | 100% | ||
eyedreemit | 0 | 0 | 100% | ||
dogeo | 0 | 794,972,272 | 100% | ||
zeroooc | 0 | 0 | 0% | ||
proditor | 0 | 406,189,179 | 100% | ||
adelepazani | 0 | 0 | 100% | ||
dinov2 | 0 | 0 | 100% | ||
cryptochain | 0 | 0 | 100% | ||
nanemnat | 0 | 0 | 100% | ||
atakanayman | 0 | 0 | 100% | ||
smithlabs | 0 | 0 | 100% | ||
yannay | 0 | 0 | 100% | ||
thankgodikkc | 0 | 0 | 100% | ||
digaosonhardor | 0 | 0 | 100% | ||
giveabit | 0 | 0 | 100% | ||
kirkwoodian | 0 | 0 | 100% | ||
ahoy8d | 0 | 0 | 100% | ||
nubbiecakes | 0 | 0 | 100% | ||
gilnambatac | 0 | 0 | 100% | ||
ruygda | 0 | 0 | 100% | ||
thatsportsguy | 0 | 0 | 100% | ||
ericscalibur | 0 | 0 | 100% | ||
beamer | 0 | 0 | 100% | ||
laurenalexx | 0 | 0 | 100% | ||
fraktale | 0 | 0 | 100% | ||
madbuddhaabuser | 0 | 0 | 100% | ||
innervision | 0 | 0 | 100% | ||
jerryhelurks | 0 | 0 | 100% | ||
kereni | 0 | 0 | 100% | ||
acrowland | 0 | 0 | 100% | ||
beeyou | 0 | 0 | 100% | ||
sanju1846 | 0 | 0 | 100% | ||
decadence | 0 | 0 | 100% | ||
jessiepdx | 0 | 0 | 100% | ||
mindreader | 0 | 0 | 100% | ||
pjkober | 0 | 0 | 100% | ||
jeftek | 0 | 0 | 100% | ||
ezinu | 0 | 0 | 100% | ||
wisexorfool | 0 | 0 | 100% | ||
sitoga | 0 | 0 | 100% | ||
mykelade | 0 | 0 | 100% | ||
smartspendweebly | 0 | 0 | 100% | ||
chrispwrites | 0 | 0 | 100% | ||
sandyprasasty | 0 | 0 | 100% | ||
bizgenz | 0 | 0 | 100% | ||
metama | 0 | 0 | 100% | ||
upcyclist | 0 | 0 | 100% | ||
aboveboard | 0 | 0 | 100% | ||
ronjon87 | 0 | 0 | 100% | ||
jazzmine | 0 | 0 | 100% | ||
see-it-feel-it | 0 | 0 | 100% | ||
blueeyes8960 | 0 | 0 | 100% | ||
veronagirl | 0 | 0 | 100% | ||
zaraanwar12 | 0 | 0 | 100% | ||
saghir | 0 | 0 | 30% | ||
teaeyeknow | 0 | 0 | 100% | ||
sugarrayairbrush | 0 | 0 | 100% | ||
powerpens | 0 | 0 | 100% | ||
jackramsey | 0 | 0 | 100% | ||
anapuglia | 0 | 0 | 100% |
This was very helpful and gives me even more tools to work with and new things to learn. Thank you and I hope you have an amazing day
author | acrowland |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180112t155628456z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-12 15:56:24 |
last_update | 2018-01-12 15:56:24 |
depth | 1 |
children | 0 |
last_payout | 2018-01-19 15:56: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 | 134 |
author_reputation | 93,689,250,804 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,034,113 |
net_rshares | 0 |
What i was looking for :) ! ,thanks it was useful information ,
author | adelepazani |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171127t061526160z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-27 06:15:30 |
last_update | 2017-11-27 06:15:30 |
depth | 1 |
children | 0 |
last_payout | 2017-12-04 06:15:30 |
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 | 64 |
author_reputation | 806,168,481,385,740 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,641,296 |
net_rshares | 0 |
Hi nice article.....Keep writing that's like article and let's help each other also checkout my post [click here]( https://steemit.com/steemit/@ah55/how-to-download-instragram-videos-easily-with-3-steps)
author | ah55 |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180423t105347344z |
category | steemit |
json_metadata | {"tags":["steemit"],"links":["https://steemit.com/steemit/@ah55/how-to-download-instragram-videos-easily-with-3-steps"],"app":"steemit/0.1"} |
created | 2018-04-23 10:53:54 |
last_update | 2018-04-23 10:53:54 |
depth | 1 |
children | 0 |
last_payout | 2018-04-30 10:53:54 |
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 | 203 |
author_reputation | 7,631,946,459 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,655,860 |
net_rshares | 0 |
Thanks so much! No amount of googling showed me the correct way to center. You just did!
author | beeyou |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180120t212628208z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-20 21:26:27 |
last_update | 2018-01-20 21:26:27 |
depth | 1 |
children | 0 |
last_payout | 2018-01-27 21:26: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 | 88 |
author_reputation | 6,318,116,736,784 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,955,230 |
net_rshares | 0 |
Thanks for the post I am working hard learning to use HTML and Markdown to create more quality posts. I have not learned how to change the font style or font color.
author | blockgators |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t195214330z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-10 19:52:15 |
last_update | 2017-11-10 19:52:15 |
depth | 1 |
children | 6 |
last_payout | 2017-11-17 19:52:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.137 HBD |
curator_payout_value | 0.035 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 164 |
author_reputation | 52,128,392,864,691 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,991,656 |
net_rshares | 81,983,038,603 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
adrianschnell | 0 | 7,545,937,337 | 24% | ||
blockgators | 0 | 74,437,101,266 | 100% |
Hey guys I am new to steemit but this is so weird. Is steemit going to be like reddit but with karma that is worth something? Oh man that is going to open up new doors. So awseome. Any right now I have only created some shitposts but thank you for this guide. I am going to do my best to get comfortable on steemit like I am on reddit.
author | kain-niak |
---|---|
permlink | re-blockgators-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180104t014302423z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-04 01:43:03 |
last_update | 2018-01-04 01:43:03 |
depth | 2 |
children | 0 |
last_payout | 2018-01-11 01:43: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 | 337 |
author_reputation | 38,488,590,632 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 26,914,551 |
net_rshares | 0 |
Tough luck, @blockgators. I have looked for days and I've been told on a good number of sites that font size and style doesn't change in markdown and the only way to change the color is by making the font a link. Those are codes I want to see too. If you do see those things change on someone's site check to see if it's really text that's been formatted or if it's an image of formatted text.
author | re-engineer |
---|---|
permlink | re-blockgators-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171114t073155783z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["blockgators"],"app":"steemit/0.1"} |
created | 2017-11-14 07:31:57 |
last_update | 2017-11-14 07:31:57 |
depth | 2 |
children | 4 |
last_payout | 2017-11-21 07:31:57 |
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 | 394 |
author_reputation | 2,464,250,451,683 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,331,261 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alethea.lim | 0 | 0 | 100% | ||
innervision | 0 | 0 | 100% |
I will keep my eye open for it now. I guess when I see it being done it was an image I was seeing. Thanks for the heads up.
author | blockgators |
---|---|
permlink | re-re-engineer-re-blockgators-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171114t114309429z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-14 11:42:48 |
last_update | 2017-11-14 11:42:48 |
depth | 3 |
children | 0 |
last_payout | 2017-11-21 11:42: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 | 123 |
author_reputation | 52,128,392,864,691 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,348,509 |
net_rshares | 0 |
I may have to incorporate the image of formatted test in some of my posts once I learn it. I also need to learn how to put the line with the logo in my posts. The page divider lines and I want to add a logo.
author | blockgators |
---|---|
permlink | re-re-engineer-re-blockgators-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171114t234515508z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-14 23:45:18 |
last_update | 2017-11-14 23:45:18 |
depth | 3 |
children | 1 |
last_payout | 2017-11-21 23:45:18 |
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 | 208 |
author_reputation | 52,128,392,864,691 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,409,668 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
re-engineer | 0 | 0 | 100% |
@re-engineer Thanks! Good to know these tricks!
author | jiayanglai |
---|---|
permlink | re-re-engineer-re-blockgators-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171209t065534193z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["re-engineer"],"app":"steemit/0.1"} |
created | 2017-12-09 06:55:33 |
last_update | 2017-12-09 06:55:33 |
depth | 3 |
children | 0 |
last_payout | 2017-12-16 06:55:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.016 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 20,641,719,438 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 22,854,261 |
net_rshares | 5,655,512,099 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
re-engineer | 0 | 5,655,512,099 | 100% | ||
giveabit | 0 | 0 | 100% |
Excellent tutorial, thank you for taking the time to explain it for us!
author | bluelightbandit |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180527t094001825z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-05-27 09:40:03 |
last_update | 2018-05-27 09:40:03 |
depth | 1 |
children | 0 |
last_payout | 2018-06-03 09:40: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 | 71 |
author_reputation | 11,549,505,209,427 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,921,974 |
net_rshares | 0 |
As I just joined steemit today and was looking into creating my first post I was wondering about this. Very interesting, Thanks!
author | bonaventurehoste |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t132549444z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-10 13:25:48 |
last_update | 2017-11-10 13:25:48 |
depth | 1 |
children | 1 |
last_payout | 2017-11-17 13:25: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 | 128 |
author_reputation | 1,637,912,705,215 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,959,886 |
net_rshares | 474,646,006 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
loler555 | 0 | 474,646,006 | 100% |
Welcome to the community :)
author | loler555 |
---|---|
permlink | re-bonaventurehoste-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t190159347z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-10 19:02:00 |
last_update | 2017-11-10 19:02:00 |
depth | 2 |
children | 0 |
last_payout | 2017-11-17 19:02: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 | 27 |
author_reputation | 5,449,445,993,461 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,988,275 |
net_rshares | 0 |
This is a really helpful post. I notice that you can use HTML on SteemIt, and that's what most people know, but I think it's beneficial to learn markdown as it seems so much easier to use. I'm going to start using markdown on all of my posts. And I can't thank you enough for the example on how to build tables. That's one I've been struggling to find for quite some time.
author | contentking |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180209t164942657z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-09 16:49:42 |
last_update | 2018-02-09 16:49:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-16 16:49: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 | 376 |
author_reputation | 7,907,050,409,054 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,209,950 |
net_rshares | 0 |
Thank you for such a well-written explanation of markdown and it’s commands. I taught myself HTML in 1995 (damn I sound old!) and have hand coded ever since. As a Steemit newbie, this post will come in handy.
author | cryptochain |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171129t145539291z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-29 14:55:39 |
last_update | 2017-11-29 14:55:39 |
depth | 1 |
children | 0 |
last_payout | 2017-12-06 14:55:39 |
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 | 208 |
author_reputation | 75,473,314,545 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,895,358 |
net_rshares | 0 |
Everybody should learn this for our blog enhancements.
author | cryptopie |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171111t002324792z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-11 00:23:30 |
last_update | 2017-11-11 00:23:30 |
depth | 1 |
children | 0 |
last_payout | 2017-11-18 00:23:30 |
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 | 54 |
author_reputation | 829,274,168,394,582 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,007,858 |
net_rshares | 0 |
Thank you so much to the [legend](themarkymark)
author | cushcoast |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180125t192509866z |
category | steemit |
json_metadata | {"tags":["steemit"],"links":["themarkymark"],"app":"steemit/0.1"} |
created | 2018-01-25 19:25:09 |
last_update | 2018-01-25 19:25:09 |
depth | 1 |
children | 0 |
last_payout | 2018-02-01 19:25:09 |
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 | 47 |
author_reputation | 1,260,817,786,112 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 32,276,282 |
net_rshares | 0 |
i feel so basic and have so much to learn -thanks mate - rock on
author | daydreams4rock |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t143747843z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-10 14:37:39 |
last_update | 2017-11-10 14:37:39 |
depth | 1 |
children | 1 |
last_payout | 2017-11-17 14:37:39 |
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 | 64 |
author_reputation | 16,735,711,990,093 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,965,646 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eyedreemit | 0 | 0 | 100% |
I'm with you: grateful for these helpful posts. Willing and eager to learn.
author | eyedreemit |
---|---|
permlink | re-daydreams4rock-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171231t173107178z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-12-31 17:31:06 |
last_update | 2017-12-31 17:31:06 |
depth | 2 |
children | 0 |
last_payout | 2018-01-07 17:31: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 | 75 |
author_reputation | 301,310,026,125 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 26,249,718 |
net_rshares | 0 |
Bookmarked this article! A lot of useful information. Merci beaucoup! :)
author | dianation |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180626t174541396z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-06-26 17:45:45 |
last_update | 2018-06-26 17:45:45 |
depth | 1 |
children | 0 |
last_payout | 2018-07-03 17:45:45 |
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 | 72 |
author_reputation | 7,826,595,855 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 62,378,402 |
net_rshares | 0 |
Nice post. I'm surprised and glad that Steemit doesn't use WYSIWIG editors. Those things destroy semantic code.
author | dinov2 |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171127t201805257z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-27 20:18:06 |
last_update | 2017-11-27 20:18:06 |
depth | 1 |
children | 0 |
last_payout | 2017-12-04 20:18: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 | 111 |
author_reputation | 515,314,187 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,708,278 |
net_rshares | 0 |
 This coding 101.
author | dukeung |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180203t201433071z |
category | steemit |
json_metadata | {"tags":["steemit"],"image":["https://steemitimages.com/DQmdd3kajU3yZDHs94KEqLaVdh9HkiyQEPwigFDddvSCAi6/25667095-E50C-42B2-82A5-4194CEF2BF4E.jpeg"],"app":"steemit/0.1"} |
created | 2018-02-03 20:14:33 |
last_update | 2018-02-03 20:14:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-10 20:14:33 |
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 | 179 |
author_reputation | 116,670,982,315 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,723,170 |
net_rshares | 0 |
Loved the meme references! LOL
author | ericscalibur |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180103t201433676z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-03 20:14:33 |
last_update | 2018-01-03 20:14:33 |
depth | 1 |
children | 0 |
last_payout | 2018-01-10 20:14:33 |
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 | 30 |
author_reputation | 44,688,998,574 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 26,860,490 |
net_rshares | 0 |
This is a big *help* for me. Thank you for __sharing__! Tried in my comment already. I am so happy. Hehe 🙂
author | gheghenrv |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171113t043051375z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-13 04:30:54 |
last_update | 2017-11-13 04:30:54 |
depth | 1 |
children | 0 |
last_payout | 2017-11-20 04:30:54 |
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 | 106 |
author_reputation | 8,856,535,015,319 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,213,456 |
net_rshares | 0 |
OMG!! This is soooooo helpful! Thanks for sharing!
author | giveabit |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180103t060739206z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-03 06:07:39 |
last_update | 2018-01-03 06:07:39 |
depth | 1 |
children | 0 |
last_payout | 2018-01-10 06:07:39 |
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 | 50 |
author_reputation | 42,896,230,763 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 26,708,976 |
net_rshares | 406,624,259 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
giveabit | 0 | 406,624,259 | 100% |
Thanks, one of the more comprehensive and well written markdown overviews I have seen on Steemit. As a programmer I am a bit peeved by the lack of syntax highlighting in code blocks. Hopefully that will be added at some point. (I have been forced to screenshot rendered code from Github to then post back to Steemit).
author | gjcooper |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t124820109z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-10 12:48:18 |
last_update | 2017-11-10 12:48:18 |
depth | 1 |
children | 0 |
last_payout | 2017-11-17 12:48:18 |
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 | 318 |
author_reputation | 849,695,714,137 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,957,077 |
net_rshares | 0 |
This was great thank you! can you make the photos smaller when you import them?
author | ground2feet |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180207t040835937z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-07 04:08:36 |
last_update | 2018-02-07 04:08:36 |
depth | 1 |
children | 0 |
last_payout | 2018-02-14 04:08:36 |
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 | 79 |
author_reputation | 11,533,241,222,459 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,566,715 |
net_rshares | 0 |
Wow thank you for this , I'm new to steemit and my head is spinning still trying to figure this all out. I feel like I entered the twilight zone. Steemit has a steep learning curve I guess
author | guidedcrypto |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180130t224729646z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-30 22:47:30 |
last_update | 2018-01-30 22:47:30 |
depth | 1 |
children | 0 |
last_payout | 2018-02-06 22:47:30 |
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 | 188 |
author_reputation | 147,411,700,316 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 33,685,332 |
net_rshares | 0 |
Loved the way you put these things up, mate.. Just adding two more 😉. Code for pulling photos to left. `<div class="pull-left">[image url]</div>` For pulling photos to right. `<div class="pull-right">[image url]</div>` Have a great day ;)
author | iamsgr |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t134119000z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-10 13:41:27 |
last_update | 2017-11-10 13:41:27 |
depth | 1 |
children | 4 |
last_payout | 2017-11-17 13:41:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.150 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 238 |
author_reputation | 4,571,058,739,464 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,961,164 |
net_rshares | 73,689,626,939 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
largelyuseless | 0 | 2,879,549,259 | 100% | ||
iamsgr | 0 | 15,935,387,586 | 100% | ||
themarkymark | 0 | 46,433,190,577 | 100% | ||
intuitivejakob | 0 | 7,972,861,688 | 100% | ||
loler555 | 0 | 468,637,829 | 100% | ||
alethea.lim | 0 | 0 | 100% |
While Gruber is often labeled writer, many forget that he also was a (web) designer. As such it is very regrettable that he never included floats or center options. Especially considering that the whole reason why he created Markdown was to make it easrier for authors (writers) to include basic HTML. WIthout needing to type out all those < & > and other attributes. Semantically _pull_ is most often used for pull-quotes, thus something which serves to highlight. Left or right-aligning an image actually gives it less focus.
author | fknmayhem |
---|---|
permlink | re-iamsgr-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t150142620z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-10 15:01:42 |
last_update | 2017-11-10 15:01:42 |
depth | 2 |
children | 0 |
last_payout | 2017-11-17 15:01: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 | 539 |
author_reputation | 156,941,100,368,387 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,967,680 |
net_rshares | 9,130,269,077 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
re-engineer | 0 | 9,130,269,077 | 100% |
I use those *so* often and it took me forever to find somewhere that explained them! I simply adore being able to put text next to the pictures where the text relates to them!
author | re-engineer |
---|---|
permlink | re-iamsgr-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171115t204512914z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-15 20:45:21 |
last_update | 2017-11-15 20:45:21 |
depth | 2 |
children | 2 |
last_payout | 2017-11-22 20:45:21 |
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 | 175 |
author_reputation | 2,464,250,451,683 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,505,116 |
net_rshares | 0 |
Well, why do you think putting images to left or right would be less relatable to texts?
author | iamsgr |
---|---|
permlink | re-re-engineer-re-iamsgr-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171116t155713435z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-16 15:57:24 |
last_update | 2017-11-16 15:57:24 |
depth | 3 |
children | 1 |
last_payout | 2017-11-23 15:57: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 | 88 |
author_reputation | 4,571,058,739,464 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,585,425 |
net_rshares | 0 |
Interesting read but I don't think I need to memorize them. The first thing I would ask whenever I use an online text editor is that **how is my life better for this?**
author | introvertspeaks |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171111t164053136z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-11 16:40:54 |
last_update | 2017-11-11 18:31:06 |
depth | 1 |
children | 1 |
last_payout | 2017-11-18 16:40:54 |
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 | 168 |
author_reputation | -4,351,658,764,138 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,069,922 |
net_rshares | 0 |
There are some markdown editors, but none of them I have found are 100% compatible with Steemit. There is also not that much to remember, and it will be a lot easier to know while writing posts. At least being familiar with what is possible will dramatically increase the look of your content.
author | themarkymark |
---|---|
permlink | re-introvertspeaks-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171111t164315759z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-11 16:43:12 |
last_update | 2017-11-11 16:43:12 |
depth | 2 |
children | 0 |
last_payout | 2017-11-18 16:43:12 |
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 | 295 |
author_reputation | 1,774,102,088,090,908 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,070,116 |
net_rshares | 3,485,921,913 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
krazykrista | 0 | 3,485,921,913 | 21% |
Great concise tutorial. I wonder what your opinions are about underline, @themarkymark. I was reading different opinions on that. Some stated that < u > and < /u > were done away with because of confusion with URLs while others were unhappy with the source of that statement. Personally, I don't feel I got a conclusive understanding of that, but recall a time when < u > & < /u > could be used to create an underline. Do you have an opinion on this?
author | intuitivejakob |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t212529567z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1","users":["themarkymark"]} |
created | 2017-11-10 21:25:30 |
last_update | 2017-11-10 21:26:09 |
depth | 1 |
children | 2 |
last_payout | 2017-11-17 21:25:30 |
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 | 457 |
author_reputation | 33,554,455,656,073 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,997,673 |
net_rshares | 0 |
Underline isn't in markdown as it wasn't designed for formatting text, just meaning. Underline is something each application would need to handle itself, like github has different additions to markdown as does Discord. Really isn't much of a choice here, got to use what's available, but I don't think there is an underline that works with Steemit as far as I know
author | themarkymark |
---|---|
permlink | re-intuitivejakob-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t214648154z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-10 21:46:45 |
last_update | 2017-11-10 21:46:45 |
depth | 2 |
children | 1 |
last_payout | 2017-11-17 21:46:45 |
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 | 367 |
author_reputation | 1,774,102,088,090,908 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,998,901 |
net_rshares | 0 |
Thanks for explaining that! It was bugging me why I couldn't figure it out.
author | intuitivejakob |
---|---|
permlink | re-themarkymark-re-intuitivejakob-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t234116102z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-10 23:41:15 |
last_update | 2017-11-10 23:41:15 |
depth | 3 |
children | 0 |
last_payout | 2017-11-17 23:41: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 | 75 |
author_reputation | 33,554,455,656,073 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,005,508 |
net_rshares | 0 |
I made up one article like this when I was starting in this platform but you really have it perfect here, gonna send the link to my friends so our stories are getting even prettier :) thanks for sharing
author | jokossita |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t134117430z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-10 13:41:24 |
last_update | 2017-11-10 13:41:24 |
depth | 1 |
children | 1 |
last_payout | 2017-11-17 13:41: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 | 202 |
author_reputation | 6,576,241,812,544 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,961,160 |
net_rshares | 0 |
:)
author | themarkymark |
---|---|
permlink | re-jokossita-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t134204740z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-10 13:42:03 |
last_update | 2017-11-10 13:42:03 |
depth | 2 |
children | 0 |
last_payout | 2017-11-17 13:42: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 | 2 |
author_reputation | 1,774,102,088,090,908 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,961,215 |
net_rshares | 0 |
Very nice and clear tutorial, it was very useful for me. Thanks!!
author | juanfb |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180507t134712361z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-05-07 13:47:12 |
last_update | 2018-05-07 13:47:12 |
depth | 1 |
children | 0 |
last_payout | 2018-05-14 13:47:12 |
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 | 65 |
author_reputation | 2,880,349,345,548 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 54,384,502 |
net_rshares | 0 |
Thanks for this marky!! Got it bookmarked now :)
author | krazykrista |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171114t121849406z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-14 12:18:51 |
last_update | 2017-11-14 12:18:51 |
depth | 1 |
children | 0 |
last_payout | 2017-11-21 12:18:51 |
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 | 48 |
author_reputation | 31,426,750,358,800 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,351,508 |
net_rshares | 0 |
Oh I love this!! I was busy using my oldschool HTML skills :P (which by the way I mastered by the age of ten in order to sell layouts on neopets!) ahahaa. I was wondering why it was a bit glitchy! I feel enlightened. And this is so much easier ! Wow ! Too bad im sour on apple at the moment after forgetting my apple password and having to wair 4 weeks for access to my account :( lol
author | laurenalexx |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180104t093154407z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-04 09:31:51 |
last_update | 2018-01-04 09:31:51 |
depth | 1 |
children | 0 |
last_payout | 2018-01-11 09:31:51 |
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 | 389 |
author_reputation | 25,151,889,587 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 26,991,159 |
net_rshares | 0 |
Cool man! Love the post :D
author | loler555 |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t190113972z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-10 19:01:15 |
last_update | 2017-11-10 19:01:15 |
depth | 1 |
children | 0 |
last_payout | 2017-11-17 19:01: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 | 26 |
author_reputation | 5,449,445,993,461 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,988,230 |
net_rshares | 0 |
Great info and easily explained. Thank you # @themarkymark
author | manorvillemike |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t193258614z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["themarkymark"],"app":"steemit/0.1"} |
created | 2017-11-10 19:32:57 |
last_update | 2017-11-10 19:32:57 |
depth | 1 |
children | 0 |
last_payout | 2017-11-17 19:32:57 |
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 | 59 |
author_reputation | 200,008,559,176,800 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,990,269 |
net_rshares | 0 |
Thanks for your post, it was necessary.
author | marisolhidalgo |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180103t224509412z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-03 22:45:24 |
last_update | 2018-01-03 22:45:24 |
depth | 1 |
children | 0 |
last_payout | 2018-01-10 22:45: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 | 39 |
author_reputation | 160,788,357,251 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 26,885,906 |
net_rshares | 0 |
This post is very good, useful for me as beginner at steemit
author | masripribumi |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t214404904z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-10 21:44:09 |
last_update | 2017-11-10 21:44:09 |
depth | 1 |
children | 0 |
last_payout | 2017-11-17 21:44:09 |
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 | 61 |
author_reputation | 605,854,166,849 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,998,745 |
net_rshares | 0 |
I use a lot of HTML on my e-commerce websites,but there is a plenty of useful information here!
author | mindreader |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180202t040838665z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-02 04:08:39 |
last_update | 2018-02-02 04:08:39 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 04:08:39 |
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 | 95 |
author_reputation | 1,824,293,074,817 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,299,529 |
net_rshares | 0 |
 *<sub>img credz: pixabay.com</sub>* *Nice, you got a 15.0% @minnowbooster upgoat, thanks to @themarkymark* *Want a boost? [Minnowbooster's](https://steemit.com/minnowbooster/@minnowbooster/6rt2mn-introducing-minnowbooster-beta) got your back!*
author | minnowbooster | ||||||
---|---|---|---|---|---|---|---|
permlink | comment-1510318575683 | ||||||
category | steemit | ||||||
json_metadata | {"app":"⇐stoned⇔pastries⇒/¹.².³","format":"markdown","tags":["minnowbooster"]} | ||||||
created | 2017-11-10 12:56:15 | ||||||
last_update | 2017-11-10 12:56:15 | ||||||
depth | 1 | ||||||
children | 2 | ||||||
last_payout | 2017-11-17 12:56: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 | 393 | ||||||
author_reputation | 230,546,282,483,083 | ||||||
root_title | "Markdown 101 - How to make kick ass posts on Steemit" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 19,957,667 | ||||||
net_rshares | -490,161,601 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemservices | 0 | -8,268,411,284 | -2% | ||
spiry-btc | 0 | 299,946,457 | 5% | ||
davedickeyyall | 0 | 7,478,303,226 | 36% | ||
beamer | 0 | 0 | 100% |
Cool goat indeed!
author | introvertspeaks |
---|---|
permlink | re-minnowbooster-comment-1510318575683-20171111t183256281z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-11 18:32:57 |
last_update | 2017-11-11 18:32:57 |
depth | 2 |
children | 0 |
last_payout | 2017-11-18 18:32:57 |
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 | 17 |
author_reputation | -4,351,658,764,138 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,078,390 |
net_rshares | 0 |
The @OriginalWorks bot has determined this post by @themarkymark to be original material and upvoted(1.5%) it! <center></center> To call @OriginalWorks, simply reply to any post with @originalworks or !originalworks in your message!
author | originalworks |
---|---|
permlink | re-comment-1510318575683-20171110t125727 |
category | steemit |
json_metadata | "{"app": "pysteem/0.5.4"}" |
created | 2017-11-10 12:57:27 |
last_update | 2017-11-10 12:57:27 |
depth | 2 |
children | 0 |
last_payout | 2017-11-17 12:57: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 | 354 |
author_reputation | 79,292,026,602,057 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,957,774 |
net_rshares | 149,973,228 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spiry-btc | 0 | 149,973,228 | 5% |
Great info that I have been having trouble finding about markdown language. Thank you so much. You answered several of my questions.
author | mother2chicks |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171115t114104115z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-15 11:41:03 |
last_update | 2017-11-15 11:41:03 |
depth | 1 |
children | 0 |
last_payout | 2017-11-22 11:41: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 | 132 |
author_reputation | 10,040,963,116,949 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,456,940 |
net_rshares | 0 |
I still do not understand how to post in steemi, I hope you can teach me how to succeed in steemit
author | mulyadi.alwi |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180103t071158102z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-03 07:12:03 |
last_update | 2018-01-03 07:12:03 |
depth | 1 |
children | 0 |
last_payout | 2018-01-10 07:12: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 | 98 |
author_reputation | 335,906,936,149 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 26,718,755 |
net_rshares | 0 |
Thank you so much for this! It would help me a lot.
author | musicdev |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t150353460z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-10 15:03:45 |
last_update | 2017-11-10 15:03:45 |
depth | 1 |
children | 0 |
last_payout | 2017-11-17 15:03:45 |
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 | 51 |
author_reputation | 0 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,967,855 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
musicdev | 0 | 0 | 0% |
Thank you for this post, It is educative for newbies like me
author | mykelade |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180311t152940321z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-11 15:29:45 |
last_update | 2018-03-11 15:29:45 |
depth | 1 |
children | 0 |
last_payout | 2018-03-18 15:29:45 |
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 | 60 |
author_reputation | 5,936,566,220 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 43,726,228 |
net_rshares | 0 |
Thank you for sharing. I have been on here for a couple months and still learning. It is nice to know and play with enhancing and highlighting a post. Upvoted, following and resteemed. Kenny.
author | pfeilerfam5 |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171112t074031116z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-12 07:40:33 |
last_update | 2017-11-12 07:40:33 |
depth | 1 |
children | 0 |
last_payout | 2017-11-19 07:40:33 |
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 | 193 |
author_reputation | 1,757,965,006,758 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,122,384 |
net_rshares | 0 |
Wow! I'll be using everything in 3...2...1! Just kidding. Tons of great information. I am new here, so I will be saving this post (somehow, somewhere) or I'll forget it. Thank you so much for sharing this.
author | plye |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t152547761z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-10 15:25:51 |
last_update | 2017-11-10 15:25:51 |
depth | 1 |
children | 0 |
last_payout | 2017-11-17 15:25:51 |
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 | 205 |
author_reputation | 85,636,012,764 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,969,632 |
net_rshares | 0 |
A great post to help begenners in MD. Given that it could be hard for a lot of people to learn markdown a tool like typora(https://typora.io/), a WYSIWYG editor, can be very useful.
author | prasanna-n |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t172524544z |
category | steemit |
json_metadata | {"tags":["steemit"],"links":["https://typora.io/"],"app":"steemit/0.1"} |
created | 2017-11-11 05:25:09 |
last_update | 2017-11-11 05:25:09 |
depth | 1 |
children | 0 |
last_payout | 2017-11-18 05:25:09 |
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 | 181 |
author_reputation | 0 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,024,039 |
net_rshares | 0 |
nice post.
author | rana420 |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t131720252z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-10 13:20:36 |
last_update | 2017-11-10 13:20:36 |
depth | 1 |
children | 0 |
last_payout | 2017-11-17 13:20:36 |
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 | 10 |
author_reputation | 2,402,915,457,848 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,959,518 |
net_rshares | 0 |
You've got the best of the best here and some of them I had to work hard to find! I have trouble with the horizontal line sometimes too. The HTML commands are sometimes a bit less flaky than the markup coding. The code for the horizontal line is `<hr>` (horizontal rule). `<sup>text</sup>` works to make text superscript which can be handy for making footnotes, eg. Footnote<sup>`[Note 1]`</sup>. The carrot (^) is supposed to work in markup but again... flaky!
author | re-engineer |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171115t074122458z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-15 07:41:27 |
last_update | 2017-11-15 07:41:27 |
depth | 1 |
children | 0 |
last_payout | 2017-11-22 07:41: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 | 466 |
author_reputation | 2,464,250,451,683 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,440,963 |
net_rshares | 0 |
Thank you sir this will be useful for ma new recruits. They will see this. I will contact ya when I need more help with the markdown
author | richforever |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171114t063417029z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-14 06:34:18 |
last_update | 2017-11-14 06:34:18 |
depth | 1 |
children | 0 |
last_payout | 2017-11-21 06:34:18 |
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 | 132 |
author_reputation | 6,126,844,828,344 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,327,586 |
net_rshares | 0 |
This is a very useful post!
author | rksleung |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180104t054658474z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-04 05:46:57 |
last_update | 2018-01-04 05:46:57 |
depth | 1 |
children | 0 |
last_payout | 2018-01-11 05:46:57 |
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 | 27 |
author_reputation | 33,261,939,147 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 26,953,684 |
net_rshares | 0 |
I am definitely saving this post for later. Although I do know markup and html well, I seek to forget some of the great uses for it in posts on SteemIt. Crel
author | rocketsteem | ||||||
---|---|---|---|---|---|---|---|
permlink | re-themarkymark-20171110t8108661z | ||||||
category | steemit | ||||||
json_metadata | {"tags":"steemit","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-11-10 13:10:09 | ||||||
last_update | 2017-11-10 13:10:09 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-11-17 13:10:09 | ||||||
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 | 157 | ||||||
author_reputation | -508,411,958,295 | ||||||
root_title | "Markdown 101 - How to make kick ass posts on Steemit" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 19,958,787 | ||||||
net_rshares | 0 |
Very informative post... learned a lot from it. So, thanks for that!! Upvote and follow. Cheers!
author | romaan-namoor |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171112t091207510z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-12 09:11:42 |
last_update | 2017-11-12 09:11:42 |
depth | 1 |
children | 0 |
last_payout | 2017-11-19 09:11: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 | 97 |
author_reputation | 7,314,095,596,434 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,128,026 |
net_rshares | 0 |
I have learn a lot from your post Posted using [Partiko Android](https://steemit.com/@partiko-android)
author | saghir |
---|---|
permlink | saghir-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20181001t055840928z |
category | steemit |
json_metadata | {"app":"partiko"} |
created | 2018-10-01 05:58:42 |
last_update | 2018-10-01 05:58:42 |
depth | 1 |
children | 0 |
last_payout | 2018-10-08 05:58: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 | 103 |
author_reputation | 272,807,971,582 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,393,186 |
net_rshares | 0 |
Wow, this article was SUPER helpful. I wish my vote was worth more!
author | saintjames |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180128t005005484z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-28 00:50:06 |
last_update | 2018-01-28 00:50:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-04 00:50: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 | 67 |
author_reputation | 189,342,247,889 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 32,871,753 |
net_rshares | 0 |
This was SUPER helpful!! Thanks for posting. :-) https://media.giphy.com/media/xULW8wG4l2XMmMkjzq/giphy.gif
author | shannonpurple |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180326t151511272z |
category | steemit |
json_metadata | {"tags":["steemit"],"image":["https://media.giphy.com/media/xULW8wG4l2XMmMkjzq/giphy.gif"],"app":"steemit/0.1"} |
created | 2018-03-26 15:15:12 |
last_update | 2018-03-26 15:15:12 |
depth | 1 |
children | 0 |
last_payout | 2018-04-02 15:15:12 |
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 | 109 |
author_reputation | 24,287,259,470 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,714,216 |
net_rshares | 544,632,143 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
shannonpurple | 0 | 544,632,143 | 100% |
sending this to myself. I am looking for how to colour the fonts but still haven't found the answer yet. No worries. I just keep on looking
author | simply-me |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180503t074336090z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemkr/0.1"} |
created | 2018-05-03 07:43:33 |
last_update | 2018-05-03 07:43:33 |
depth | 1 |
children | 2 |
last_payout | 2018-05-10 07:43:33 |
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 | 141 |
author_reputation | 5,502,142,386,750 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,592,634 |
net_rshares | 0 |
You have to use images.
author | themarkymark |
---|---|
permlink | re-simply-me-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180503t074847106z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-05-03 07:48:15 |
last_update | 2018-05-03 07:48:15 |
depth | 2 |
children | 1 |
last_payout | 2018-05-10 07:48: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 | 23 |
author_reputation | 1,774,102,088,090,908 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,593,262 |
net_rshares | 0 |
thanks
author | simply-me |
---|---|
permlink | re-themarkymark-re-simply-me-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180503t080033141z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-05-03 08:00:30 |
last_update | 2018-05-03 08:00:30 |
depth | 3 |
children | 0 |
last_payout | 2018-05-10 08:00:30 |
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 | 6 |
author_reputation | 5,502,142,386,750 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,594,844 |
net_rshares | 0 |
Great post! As a total newbie at Steemit this is very helpful and save me tons of time. So, again, thanks for putting this together.
author | sitoga |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180208t225250430z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-08 22:52:51 |
last_update | 2018-02-08 22:52:51 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 22:52:51 |
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 | 132 |
author_reputation | 62,572,134 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,020,847 |
net_rshares | 0 |
Couple of great new markup tricks you’ve shown me. Thank you.
author | stephen-somers |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171111t093847649z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-11 09:38:48 |
last_update | 2017-11-11 09:38:48 |
depth | 1 |
children | 0 |
last_payout | 2017-11-18 09:38: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 | 62 |
author_reputation | 19,280,743,077,878 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,038,979 |
net_rshares | 0 |
@themarkymark I've been on Steemit for a bit now, but life changes means I can now make a more serious effort instead of a kind of daily blurb for interest. I've started writing up science posts and wanted to smarten them up. This has been so helpful I've copied to a word.docx so I can keep referring back until it's 2nd nature. I'm using hackmd.io and agree it's probably the better one. I just need to figure out how to make text red or blue now - just to spice it up a bit. Thank you and you should report this for newcomers.
author | suzanrs |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180606t082152021z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["themarkymark"],"app":"steemit/0.1"} |
created | 2018-06-06 08:21:48 |
last_update | 2018-06-06 08:21:48 |
depth | 1 |
children | 1 |
last_payout | 2018-06-13 08:21: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 | 532 |
author_reputation | 3,621,663,216,690 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 59,495,482 |
net_rshares | 0 |
I have this post as well as a few others in my footer of every post as it's good for new users.
author | themarkymark |
---|---|
permlink | re-suzanrs-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180606t094113059z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-06-06 09:40:12 |
last_update | 2018-06-06 09:40:12 |
depth | 2 |
children | 0 |
last_payout | 2018-06-13 09:40:12 |
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 | 95 |
author_reputation | 1,774,102,088,090,908 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 59,503,062 |
net_rshares | 4,487,971,841 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
suzanrs | 0 | 4,487,971,841 | 100% |
Great tips! Joy
author | sweetjoy |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180206t205803608z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-06 20:58:12 |
last_update | 2018-02-06 20:58:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 20:58:12 |
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 | 15 |
author_reputation | 527,997,377,893 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,492,937 |
net_rshares | 0 |
# Thank You </br> ><sub>I can't **Thank you** enough.</sub>
author | t-flames |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180302t142142578z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-02 14:21:54 |
last_update | 2018-03-02 14:21:54 |
depth | 1 |
children | 0 |
last_payout | 2018-03-09 14:21:54 |
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 | 60 |
author_reputation | 4,418,258,114,759 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,647,325 |
net_rshares | 245,285,861 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
t-flames | 0 | 245,285,861 | 100% |
Thank you for usful information. I'll try to use it
author | tananda |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180816t054249472z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-08-16 05:42:51 |
last_update | 2018-08-16 05:42:51 |
depth | 1 |
children | 0 |
last_payout | 2018-08-23 05:42:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.028 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 1,093,842,202,956 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 68,352,930 |
net_rshares | 28,570,941,267 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gritata | 0 | 28,570,941,267 | 100% |
This is amazingly one of the best post I have come across ever since I sign onto Steemit. I am so new here but after reading this post I feel more empowered to work my way through building a whale. I really like your sense of creativity and commitment. You really have added value to me today. Thanks a lot for the post. It really is awesome.
author | teaeyeknow | ||||||
---|---|---|---|---|---|---|---|
permlink | re-themarkymark-2018818t19158349z | ||||||
category | steemit | ||||||
json_metadata | {"tags":["steemit","writing","technology","howto","ocd-resteem"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-08-18 17:15:15 | ||||||
last_update | 2018-08-18 17:15:15 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-08-25 17:15: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 | 342 | ||||||
author_reputation | 58,918,343,511 | ||||||
root_title | "Markdown 101 - How to make kick ass posts on Steemit" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 68,620,739 | ||||||
net_rshares | 0 |
wow this wonderful
author | thankgodikkc |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180105t113906585z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-01-04 23:40:48 |
last_update | 2018-01-04 23:40:48 |
depth | 1 |
children | 0 |
last_payout | 2018-01-11 23:40: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 | 18 |
author_reputation | 757,051,163,247 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,142,588 |
net_rshares | 0 |
@themarkymark, possibly one of the most useful posts I have come across on stremit so far, thank you so much, following and voted!
author | theexplorer |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171112t223710257z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["themarkymark"],"app":"steemit/0.1"} |
created | 2017-11-12 22:37:15 |
last_update | 2017-11-12 22:37:15 |
depth | 1 |
children | 0 |
last_payout | 2017-11-19 22:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.093 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 131 |
author_reputation | 4,631,018,157,628 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,191,700 |
net_rshares | 49,984,137,302 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
themarkymark | 0 | 49,984,137,302 | 100% |
Very informative post mate. The examples made a lot of sense, and you explained it in plain English. Thank you for giving examples of how it's supposed to present, too.
author | veronagirl |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180613t214339275z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-06-13 21:43:45 |
last_update | 2018-06-13 21:43:45 |
depth | 1 |
children | 0 |
last_payout | 2018-06-20 21:43:45 |
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 | 168 |
author_reputation | 753,770,898 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 60,639,620 |
net_rshares | 0 |
so much to learn here, its not something I can read and learn at once. I am definitely going to follow you
author | vhicktoriea |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180313t071933934z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-13 07:19:54 |
last_update | 2018-03-13 07:19:54 |
depth | 1 |
children | 0 |
last_payout | 2018-03-20 07:19:54 |
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 | 106 |
author_reputation | 2,154,069,205 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 44,079,324 |
net_rshares | 0 |
Nice! voteback!
author | wahab9107 |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t131433665z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-10 13:14:36 |
last_update | 2017-11-10 13:14:36 |
depth | 1 |
children | 0 |
last_payout | 2017-11-17 13:14:36 |
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 | 15 |
author_reputation | 2,619,802,352,619 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,959,097 |
net_rshares | 0 |
No matter how many times I read posts like this, there is so much to get out of it for a novice. The time that it took and the work you put into it, is deeply appreciated. I have been encouraged to start content creation, but am shy because of my lack of skill. I am surely not alone. Thank you sincerely for addressing this.
author | windrockswater |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t124852991z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-10 12:48:57 |
last_update | 2017-11-10 12:48:57 |
depth | 1 |
children | 0 |
last_payout | 2017-11-17 12:48:57 |
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 | 328 |
author_reputation | 429,873,480,185 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,957,125 |
net_rshares | 3,091,288,534 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
largelyuseless | 0 | 2,834,556,302 | 100% | ||
windrockswater | 0 | 256,732,232 | 100% |
Super useful! You're an inspiration :)
author | wisexorfool |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180207t040711783z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-02-07 04:07:12 |
last_update | 2018-02-07 04:07:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-14 04:07:12 |
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 | 38 |
author_reputation | 91,407,823,059 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,566,486 |
net_rshares | 0 |
I’m printing this and keeping it close until I remember all tips by heart. <hr> # <center>If I was a programmer and not a finance compliance manager it would be much easier. # * not bad * better than I thought <hr> 1. Great post 1. Helpful instructions  > I’ll be following you now
author | xlaylamx | ||||||
---|---|---|---|---|---|---|---|
permlink | re-themarkymark-2018311t174159760z | ||||||
category | steemit | ||||||
json_metadata | {"tags":["steemit","writing","technology","howto","ocd-resteem"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-03-11 21:42:00 | ||||||
last_update | 2018-03-11 21:42:00 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-03-18 21:42: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 | 333 | ||||||
author_reputation | 189,857,763,394 | ||||||
root_title | "Markdown 101 - How to make kick ass posts on Steemit" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 43,780,829 | ||||||
net_rshares | 0 |
How to write smaller font size than normal text ...like one written below an image to describe it?
author | xyzashu |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171114t033631038z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-14 03:36:30 |
last_update | 2017-11-14 03:36:30 |
depth | 1 |
children | 1 |
last_payout | 2017-11-21 03:36:30 |
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 | 98 |
author_reputation | 366,144,494,981,430 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,315,880 |
net_rshares | 0 |
Yes, it's called subscript, great for citations.
author | themarkymark |
---|---|
permlink | re-xyzashu-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171114t060655871z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-14 06:06:54 |
last_update | 2017-11-14 06:06:54 |
depth | 2 |
children | 0 |
last_payout | 2017-11-21 06:06:54 |
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 | 48 |
author_reputation | 1,774,102,088,090,908 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,325,822 |
net_rshares | 0 |
Very comprehensive guide. Don't see any love for [typora.io](www.typora.io) though, I think it's a very cool little markdown editor.
author | zeroooc |
---|---|
permlink | re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180102t192032475z |
category | steemit |
json_metadata | {"tags":["steemit"],"links":["www.typora.io"],"app":"steemit/0.1"} |
created | 2018-01-02 19:20:33 |
last_update | 2018-01-02 19:20:33 |
depth | 1 |
children | 0 |
last_payout | 2018-01-09 19:20:33 |
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 | 132 |
author_reputation | 3,841,235,820,911 |
root_title | "Markdown 101 - How to make kick ass posts on Steemit" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 26,620,088 |
net_rshares | 0 |