create account

Markdown 101 - How to make kick ass posts on Steemit by themarkymark

View this thread on: hive.blogpeakd.comecency.com
· @themarkymark · (edited)
$65.02
Markdown 101 - How to make kick ass posts on Steemit
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:

![](https://steemitimages.com/DQmdy6oYwLrbhHvVpf7KRAkxjvUpLzBKZiRMNxohS2e9FYn/image.png)

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>![giphy.gif](https://steemitimages.com/DQmRhLXVeC247nwkPDAJrSCKjSpvswdPztGVAtpBDZ6o56H/giphy.gif)</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>![giphy.gif](https://steemitimages.com/DQmeK5p1Jr4mrwPx9Ce9VYbvVjHDd9hteT9Q6yVnpnMB2p5/giphy.gif)</center>

*Italics* is the same format but instead of two * you use one.  `*this is italics*`

There is also ~~strikethrough~~ which is done with:
![](https://steemitimages.com/DQmVAyVaKVUXm511WhSFfuoTUNDXAbXAvZrXw4TC1e4fYav/image.png)

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:
![](https://steemitimages.com/DQmb47vajmcGrE4VTFfcL2vajLL8SjAfSAFossZRbK4rjaP/image.png)

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

![](https://steemitimages.com/DQmdaDUmZ5gW64EP7QPq4UyNvZXux7LgZYVJp3ht3gfN1yU/image.png)

Like *emphasis* you can combine these with any combination

* Succeed on Steemit
   1. add value
   2. post regularly
   3. engage audiance

![](https://steemitimages.com/DQmPfzk1CGJTRQkeGHr5gUiZUnuNPBuQLywZJczdWJdYcir/image.png)

# 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:

![](https://steemitimages.com/DQmZS5d8CHnsnZicZf6yGQTgS8JYTrygCs2xdcZEtDpHvmt/image.png)

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

![](https://steemitimages.com/DQmUa9nRZPbB2HNWavmgLoLa1Dw5jj6ch8BEWNCcGzu17aQ/image.png)
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)

![](https://steemitimages.com/DQmV3NDdxtnGRcnntYMdPro6DYrtZzHNSwMetPm4uF8TEhc/image.png)


# 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](IMAGE URL)`

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>![ALT TEXT](IMAGE URL)</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://steemitimages.com/DQmXXqSScy5WpFPncpJigs2EdntpVDVWBfpcCN1yAcfRWYQ/image.png)](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:
![](https://steemitimages.com/DQmc1faV1XximGfCrG56GgaYhwj7xf2ktB7dpUyXdR9rLAk/image.png)

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> #
![](https://steemitimages.com/DQmUErnnt29qjAxvUqzbkbnHKJLXYJSCe4vgp5apitRWQTv/image.png)

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");
}
```

![](https://steemitimages.com/DQmYFX7Jmjw2oVvAyQaQ1wQtdSaHem3KWhWRGuSWp7etfJr/image.png)

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:

![](https://steemitimages.com/DQme3SHAJKnAy9FNJxhAVDTd8nwxeMyq8uoXCAvdC66UbrN/image.png)

# 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`
![](https://steemitimages.com/DQmQL4mUZM4VJSm7Pwzwaj3gsX5GhNaM929r1yZUYZzHkXz/image.png)


# 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!

![Header](https://steemitimages.com/DQmZ8U4qP7ZNm9RWy2A6XGJmwotbogA4JnguPvFaa97r3Bb/image.png)
<sub>[Source](http://mikemclin.net/markdown-syntax-language/)</sub>



<center>[![](![baw_I.gif](https://steemitimages.com/DQmX8o4NviF6T7vrhAeyCC6a8kgyW3FNHar3U9TcoiSUmTS/baw_I.gif))](http://www.steemit.com/@buildawhale)</center>

[![](https://steemitimages.com/DQmPkQhAQceC7aHr4Gy5GKv7LMoiy47P7PyaNCeZBHMpFke/white-bg-with-drop-shadow.gif)](https://steemit.com/~witnesses)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 231 others
properties (23)
authorthemarkymark
permlinkmarkdown-101-how-to-make-kick-ass-posts-on-steemit
categorysteemit
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","![baw_I.gif](https://steemitimages.com/DQmX8o4NviF6T7vrhAeyCC6a8kgyW3FNHar3U9TcoiSUmTS/baw_I.gif)","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"}
created2017-11-10 12:38:42
last_update2017-11-14 11:26:33
depth0
children90
last_payout2017-11-17 12:38:42
cashout_time1969-12-31 23:59:59
total_payout_value56.042 HBD
curator_payout_value8.980 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12,371
author_reputation1,774,102,088,090,908
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,956,369
net_rshares30,361,077,811,071
author_curate_reward""
vote details (295)
@acrowland ·
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
properties (22)
authoracrowland
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180112t155628456z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-12 15:56:24
last_update2018-01-12 15:56:24
depth1
children0
last_payout2018-01-19 15:56:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length134
author_reputation93,689,250,804
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,034,113
net_rshares0
@adelepazani ·
What i was looking for  :) ! ,thanks it was useful information ,
properties (22)
authoradelepazani
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171127t061526160z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-27 06:15:30
last_update2017-11-27 06:15:30
depth1
children0
last_payout2017-12-04 06:15:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation806,168,481,385,740
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,641,296
net_rshares0
@ah55 ·
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)
properties (22)
authorah55
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180423t105347344z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://steemit.com/steemit/@ah55/how-to-download-instragram-videos-easily-with-3-steps"],"app":"steemit/0.1"}
created2018-04-23 10:53:54
last_update2018-04-23 10:53:54
depth1
children0
last_payout2018-04-30 10:53:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length203
author_reputation7,631,946,459
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,655,860
net_rshares0
@beeyou ·
Thanks so much! No amount of googling showed me the correct way to center. You just did!
properties (22)
authorbeeyou
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180120t212628208z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-20 21:26:27
last_update2018-01-20 21:26:27
depth1
children0
last_payout2018-01-27 21:26:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation6,318,116,736,784
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,955,230
net_rshares0
@blockgators ·
$0.17
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.
👍  ,
properties (23)
authorblockgators
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t195214330z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-10 19:52:15
last_update2017-11-10 19:52:15
depth1
children6
last_payout2017-11-17 19:52:15
cashout_time1969-12-31 23:59:59
total_payout_value0.137 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length164
author_reputation52,128,392,864,691
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,991,656
net_rshares81,983,038,603
author_curate_reward""
vote details (2)
@kain-niak ·
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.
properties (22)
authorkain-niak
permlinkre-blockgators-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180104t014302423z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-04 01:43:03
last_update2018-01-04 01:43:03
depth2
children0
last_payout2018-01-11 01:43:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length337
author_reputation38,488,590,632
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,914,551
net_rshares0
@re-engineer ·
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.
👍  ,
properties (23)
authorre-engineer
permlinkre-blockgators-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171114t073155783z
categorysteemit
json_metadata{"tags":["steemit"],"users":["blockgators"],"app":"steemit/0.1"}
created2017-11-14 07:31:57
last_update2017-11-14 07:31:57
depth2
children4
last_payout2017-11-21 07:31:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length394
author_reputation2,464,250,451,683
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,331,261
net_rshares0
author_curate_reward""
vote details (2)
@blockgators ·
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.
properties (22)
authorblockgators
permlinkre-re-engineer-re-blockgators-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171114t114309429z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-14 11:42:48
last_update2017-11-14 11:42:48
depth3
children0
last_payout2017-11-21 11:42:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation52,128,392,864,691
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,348,509
net_rshares0
@blockgators ·
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.
👍  
properties (23)
authorblockgators
permlinkre-re-engineer-re-blockgators-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171114t234515508z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-14 23:45:18
last_update2017-11-14 23:45:18
depth3
children1
last_payout2017-11-21 23:45:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length208
author_reputation52,128,392,864,691
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,409,668
net_rshares0
author_curate_reward""
vote details (1)
@jiayanglai ·
$0.02
@re-engineer Thanks! Good to know these tricks!
👍  ,
properties (23)
authorjiayanglai
permlinkre-re-engineer-re-blockgators-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171209t065534193z
categorysteemit
json_metadata{"tags":["steemit"],"users":["re-engineer"],"app":"steemit/0.1"}
created2017-12-09 06:55:33
last_update2017-12-09 06:55:33
depth3
children0
last_payout2017-12-16 06:55:33
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation20,641,719,438
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,854,261
net_rshares5,655,512,099
author_curate_reward""
vote details (2)
@bluelightbandit ·
Excellent tutorial, thank you for taking the time to explain it for us!
properties (22)
authorbluelightbandit
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180527t094001825z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-05-27 09:40:03
last_update2018-05-27 09:40:03
depth1
children0
last_payout2018-06-03 09:40:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation11,549,505,209,427
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,921,974
net_rshares0
@bonaventurehoste ·
As I just joined steemit today and was looking into creating my first post I was wondering about this.
Very interesting, Thanks!
👍  
properties (23)
authorbonaventurehoste
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t132549444z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-10 13:25:48
last_update2017-11-10 13:25:48
depth1
children1
last_payout2017-11-17 13:25:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation1,637,912,705,215
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,959,886
net_rshares474,646,006
author_curate_reward""
vote details (1)
@loler555 ·
Welcome to the community :)
properties (22)
authorloler555
permlinkre-bonaventurehoste-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t190159347z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-10 19:02:00
last_update2017-11-10 19:02:00
depth2
children0
last_payout2017-11-17 19:02:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation5,449,445,993,461
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,988,275
net_rshares0
@contentking ·
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.
properties (22)
authorcontentking
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180209t164942657z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-09 16:49:42
last_update2018-02-09 16:49:42
depth1
children0
last_payout2018-02-16 16:49:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length376
author_reputation7,907,050,409,054
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,209,950
net_rshares0
@cryptochain ·
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.
properties (22)
authorcryptochain
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171129t145539291z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-29 14:55:39
last_update2017-11-29 14:55:39
depth1
children0
last_payout2017-12-06 14:55:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length208
author_reputation75,473,314,545
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,895,358
net_rshares0
@cryptopie ·
Everybody should learn this for our blog enhancements.
properties (22)
authorcryptopie
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171111t002324792z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-11 00:23:30
last_update2017-11-11 00:23:30
depth1
children0
last_payout2017-11-18 00:23:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation829,274,168,394,582
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,007,858
net_rshares0
@cushcoast ·
Thank you so much to the [legend](themarkymark)
properties (22)
authorcushcoast
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180125t192509866z
categorysteemit
json_metadata{"tags":["steemit"],"links":["themarkymark"],"app":"steemit/0.1"}
created2018-01-25 19:25:09
last_update2018-01-25 19:25:09
depth1
children0
last_payout2018-02-01 19:25:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation1,260,817,786,112
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id32,276,282
net_rshares0
@daydreams4rock ·
i feel so basic and have so much to learn -thanks mate - rock on
👍  
properties (23)
authordaydreams4rock
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t143747843z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-10 14:37:39
last_update2017-11-10 14:37:39
depth1
children1
last_payout2017-11-17 14:37:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation16,735,711,990,093
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,965,646
net_rshares0
author_curate_reward""
vote details (1)
@eyedreemit ·
I'm with you: grateful for these helpful posts. Willing and eager to learn.
properties (22)
authoreyedreemit
permlinkre-daydreams4rock-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171231t173107178z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-31 17:31:06
last_update2017-12-31 17:31:06
depth2
children0
last_payout2018-01-07 17:31:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation301,310,026,125
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,249,718
net_rshares0
@dianation ·
Bookmarked this article! A lot of useful information. Merci beaucoup! :)
properties (22)
authordianation
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180626t174541396z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-26 17:45:45
last_update2018-06-26 17:45:45
depth1
children0
last_payout2018-07-03 17:45:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation7,826,595,855
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id62,378,402
net_rshares0
@dinov2 ·
Nice post. I'm surprised and glad that Steemit doesn't use WYSIWIG editors. Those things destroy semantic code.
properties (22)
authordinov2
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171127t201805257z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-27 20:18:06
last_update2017-11-27 20:18:06
depth1
children0
last_payout2017-12-04 20:18:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation515,314,187
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,708,278
net_rshares0
@dukeung ·
![25667095-E50C-42B2-82A5-4194CEF2BF4E.jpeg](https://steemitimages.com/DQmdd3kajU3yZDHs94KEqLaVdh9HkiyQEPwigFDddvSCAi6/25667095-E50C-42B2-82A5-4194CEF2BF4E.jpeg)

This coding 101.
properties (22)
authordukeung
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180203t201433071z
categorysteemit
json_metadata{"tags":["steemit"],"image":["https://steemitimages.com/DQmdd3kajU3yZDHs94KEqLaVdh9HkiyQEPwigFDddvSCAi6/25667095-E50C-42B2-82A5-4194CEF2BF4E.jpeg"],"app":"steemit/0.1"}
created2018-02-03 20:14:33
last_update2018-02-03 20:14:33
depth1
children0
last_payout2018-02-10 20:14:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length179
author_reputation116,670,982,315
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,723,170
net_rshares0
@ericscalibur ·
Loved the meme references! LOL
properties (22)
authorericscalibur
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180103t201433676z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-03 20:14:33
last_update2018-01-03 20:14:33
depth1
children0
last_payout2018-01-10 20:14:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation44,688,998,574
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,860,490
net_rshares0
@gheghenrv ·
This is a big *help* for me. Thank you for __sharing__! Tried in my comment already. I am so happy. Hehe 🙂
properties (22)
authorgheghenrv
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171113t043051375z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-13 04:30:54
last_update2017-11-13 04:30:54
depth1
children0
last_payout2017-11-20 04:30:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation8,856,535,015,319
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,213,456
net_rshares0
@giveabit ·
OMG!! This is soooooo helpful! Thanks for sharing!
👍  
properties (23)
authorgiveabit
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180103t060739206z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-03 06:07:39
last_update2018-01-03 06:07:39
depth1
children0
last_payout2018-01-10 06:07:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation42,896,230,763
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,708,976
net_rshares406,624,259
author_curate_reward""
vote details (1)
@gjcooper ·
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).
properties (22)
authorgjcooper
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t124820109z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-10 12:48:18
last_update2017-11-10 12:48:18
depth1
children0
last_payout2017-11-17 12:48:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length318
author_reputation849,695,714,137
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,957,077
net_rshares0
@ground2feet ·
This was great thank you! can you make the photos smaller when you import them?
properties (22)
authorground2feet
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180207t040835937z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-07 04:08:36
last_update2018-02-07 04:08:36
depth1
children0
last_payout2018-02-14 04:08:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation11,533,241,222,459
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,566,715
net_rshares0
@guidedcrypto ·
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
properties (22)
authorguidedcrypto
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180130t224729646z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-30 22:47:30
last_update2018-01-30 22:47:30
depth1
children0
last_payout2018-02-06 22:47:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length188
author_reputation147,411,700,316
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,685,332
net_rshares0
@iamsgr ·
$0.16
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 ;)
👍  , , , , ,
properties (23)
authoriamsgr
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t134119000z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-10 13:41:27
last_update2017-11-10 13:41:27
depth1
children4
last_payout2017-11-17 13:41:27
cashout_time1969-12-31 23:59:59
total_payout_value0.150 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length238
author_reputation4,571,058,739,464
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,961,164
net_rshares73,689,626,939
author_curate_reward""
vote details (6)
@fknmayhem ·
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 &lt; &amp; &gt; 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.
👍  
properties (23)
authorfknmayhem
permlinkre-iamsgr-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t150142620z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-10 15:01:42
last_update2017-11-10 15:01:42
depth2
children0
last_payout2017-11-17 15:01:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length539
author_reputation156,941,100,368,387
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,967,680
net_rshares9,130,269,077
author_curate_reward""
vote details (1)
@re-engineer ·
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!
properties (22)
authorre-engineer
permlinkre-iamsgr-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171115t204512914z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-15 20:45:21
last_update2017-11-15 20:45:21
depth2
children2
last_payout2017-11-22 20:45:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length175
author_reputation2,464,250,451,683
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,505,116
net_rshares0
@iamsgr ·
Well, why do you think putting images to left or right would be less relatable to texts?
properties (22)
authoriamsgr
permlinkre-re-engineer-re-iamsgr-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171116t155713435z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-16 15:57:24
last_update2017-11-16 15:57:24
depth3
children1
last_payout2017-11-23 15:57:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation4,571,058,739,464
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,585,425
net_rshares0
@introvertspeaks · (edited)
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?**
properties (22)
authorintrovertspeaks
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171111t164053136z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-11 16:40:54
last_update2017-11-11 18:31:06
depth1
children1
last_payout2017-11-18 16:40:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length168
author_reputation-4,351,658,764,138
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,069,922
net_rshares0
@themarkymark ·
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.
👍  
properties (23)
authorthemarkymark
permlinkre-introvertspeaks-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171111t164315759z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-11 16:43:12
last_update2017-11-11 16:43:12
depth2
children0
last_payout2017-11-18 16:43:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length295
author_reputation1,774,102,088,090,908
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,070,116
net_rshares3,485,921,913
author_curate_reward""
vote details (1)
@intuitivejakob · (edited)
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?
properties (22)
authorintuitivejakob
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t212529567z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1","users":["themarkymark"]}
created2017-11-10 21:25:30
last_update2017-11-10 21:26:09
depth1
children2
last_payout2017-11-17 21:25:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length457
author_reputation33,554,455,656,073
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,997,673
net_rshares0
@themarkymark ·
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
properties (22)
authorthemarkymark
permlinkre-intuitivejakob-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t214648154z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-10 21:46:45
last_update2017-11-10 21:46:45
depth2
children1
last_payout2017-11-17 21:46:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length367
author_reputation1,774,102,088,090,908
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,998,901
net_rshares0
@intuitivejakob ·
Thanks for explaining that! It was bugging me why I couldn't figure it out.
properties (22)
authorintuitivejakob
permlinkre-themarkymark-re-intuitivejakob-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t234116102z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-10 23:41:15
last_update2017-11-10 23:41:15
depth3
children0
last_payout2017-11-17 23:41:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation33,554,455,656,073
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,005,508
net_rshares0
@jokossita ·
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
properties (22)
authorjokossita
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t134117430z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-10 13:41:24
last_update2017-11-10 13:41:24
depth1
children1
last_payout2017-11-17 13:41:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length202
author_reputation6,576,241,812,544
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,961,160
net_rshares0
@themarkymark ·
:)
properties (22)
authorthemarkymark
permlinkre-jokossita-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t134204740z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-10 13:42:03
last_update2017-11-10 13:42:03
depth2
children0
last_payout2017-11-17 13:42:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2
author_reputation1,774,102,088,090,908
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,961,215
net_rshares0
@juanfb ·
Very nice and clear tutorial, it was very useful for me. Thanks!!
properties (22)
authorjuanfb
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180507t134712361z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-05-07 13:47:12
last_update2018-05-07 13:47:12
depth1
children0
last_payout2018-05-14 13:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation2,880,349,345,548
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,384,502
net_rshares0
@krazykrista ·
Thanks for this marky!! Got it bookmarked now :)
properties (22)
authorkrazykrista
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171114t121849406z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-14 12:18:51
last_update2017-11-14 12:18:51
depth1
children0
last_payout2017-11-21 12:18:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation31,426,750,358,800
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,351,508
net_rshares0
@laurenalexx ·
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
properties (22)
authorlaurenalexx
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180104t093154407z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-04 09:31:51
last_update2018-01-04 09:31:51
depth1
children0
last_payout2018-01-11 09:31:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length389
author_reputation25,151,889,587
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,991,159
net_rshares0
@loler555 ·
Cool man! Love the post :D
properties (22)
authorloler555
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t190113972z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-10 19:01:15
last_update2017-11-10 19:01:15
depth1
children0
last_payout2017-11-17 19:01:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation5,449,445,993,461
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,988,230
net_rshares0
@manorvillemike ·
Great info and easily explained. Thank you  # @themarkymark
properties (22)
authormanorvillemike
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t193258614z
categorysteemit
json_metadata{"tags":["steemit"],"users":["themarkymark"],"app":"steemit/0.1"}
created2017-11-10 19:32:57
last_update2017-11-10 19:32:57
depth1
children0
last_payout2017-11-17 19:32:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation200,008,559,176,800
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,990,269
net_rshares0
@marisolhidalgo ·
Thanks for your post, it was necessary.
properties (22)
authormarisolhidalgo
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180103t224509412z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-03 22:45:24
last_update2018-01-03 22:45:24
depth1
children0
last_payout2018-01-10 22:45:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation160,788,357,251
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,885,906
net_rshares0
@masripribumi ·
This post is very good,  useful for me as beginner at steemit
properties (22)
authormasripribumi
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t214404904z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-10 21:44:09
last_update2017-11-10 21:44:09
depth1
children0
last_payout2017-11-17 21:44:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation605,854,166,849
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,998,745
net_rshares0
@mindreader ·
I use a lot of HTML on my e-commerce websites,but there is a plenty of useful information here!
properties (22)
authormindreader
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180202t040838665z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-02 04:08:39
last_update2018-02-02 04:08:39
depth1
children0
last_payout2018-02-09 04:08:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation1,824,293,074,817
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,299,529
net_rshares0
@minnowbooster ·
@minnowbooster upvoted this post!
![Calling @originalworks :)](http://minnowshares.net/upgoat/?user=themarkymark&receiver=themarkymark&sender=minnowbooster&value=36.55&hash=108)
*<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!*
    
👍  , ,
👎  
properties (23)
authorminnowbooster
permlinkcomment-1510318575683
categorysteemit
json_metadata{"app":"⇐stoned⇔pastries⇒/¹.².³","format":"markdown","tags":["minnowbooster"]}
created2017-11-10 12:56:15
last_update2017-11-10 12:56:15
depth1
children2
last_payout2017-11-17 12:56:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length393
author_reputation230,546,282,483,083
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries
0.
accountupgoat
weight10,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,957,667
net_rshares-490,161,601
author_curate_reward""
vote details (4)
@introvertspeaks ·
Cool goat indeed!
properties (22)
authorintrovertspeaks
permlinkre-minnowbooster-comment-1510318575683-20171111t183256281z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-11 18:32:57
last_update2017-11-11 18:32:57
depth2
children0
last_payout2017-11-18 18:32:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation-4,351,658,764,138
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,078,390
net_rshares0
@originalworks ·
originalworks
The @OriginalWorks bot has determined this post by @themarkymark to be original material and upvoted(1.5%) it! 
<center>![ezgif.com-resize.gif](https://steemitimages.com/DQmaBi37A5oTnQ9NBLH8YU4jpvhhmFauyvgg3YRrEJwskM9/ezgif.com-resize.gif)</center> 

To call @OriginalWorks, simply reply to any post with @originalworks or !originalworks in your message!
👍  
properties (23)
authororiginalworks
permlinkre-comment-1510318575683-20171110t125727
categorysteemit
json_metadata"{"app": "pysteem/0.5.4"}"
created2017-11-10 12:57:27
last_update2017-11-10 12:57:27
depth2
children0
last_payout2017-11-17 12:57:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length354
author_reputation79,292,026,602,057
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,957,774
net_rshares149,973,228
author_curate_reward""
vote details (1)
@mother2chicks ·
Great info that I have been having trouble finding about markdown language. Thank you so much. You answered several of my questions.
properties (22)
authormother2chicks
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171115t114104115z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-15 11:41:03
last_update2017-11-15 11:41:03
depth1
children0
last_payout2017-11-22 11:41:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length132
author_reputation10,040,963,116,949
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,456,940
net_rshares0
@mulyadi.alwi ·
I still do not understand how to post in steemi, I hope you can teach me how to succeed in steemit
properties (22)
authormulyadi.alwi
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180103t071158102z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-03 07:12:03
last_update2018-01-03 07:12:03
depth1
children0
last_payout2018-01-10 07:12:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation335,906,936,149
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,718,755
net_rshares0
@musicdev ·
Thank you so much for this! It would help me a lot.
👍  
properties (23)
authormusicdev
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t150353460z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-10 15:03:45
last_update2017-11-10 15:03:45
depth1
children0
last_payout2017-11-17 15:03:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation0
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,967,855
net_rshares0
author_curate_reward""
vote details (1)
@mykelade ·
Thank you for this post, It is educative for newbies like me
properties (22)
authormykelade
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180311t152940321z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-03-11 15:29:45
last_update2018-03-11 15:29:45
depth1
children0
last_payout2018-03-18 15:29:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation5,936,566,220
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id43,726,228
net_rshares0
@pfeilerfam5 ·
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.
properties (22)
authorpfeilerfam5
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171112t074031116z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-12 07:40:33
last_update2017-11-12 07:40:33
depth1
children0
last_payout2017-11-19 07:40:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length193
author_reputation1,757,965,006,758
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,122,384
net_rshares0
@plye ·
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.
properties (22)
authorplye
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t152547761z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-10 15:25:51
last_update2017-11-10 15:25:51
depth1
children0
last_payout2017-11-17 15:25:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length205
author_reputation85,636,012,764
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,969,632
net_rshares0
@prasanna-n ·
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.
properties (22)
authorprasanna-n
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t172524544z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://typora.io/"],"app":"steemit/0.1"}
created2017-11-11 05:25:09
last_update2017-11-11 05:25:09
depth1
children0
last_payout2017-11-18 05:25:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length181
author_reputation0
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,024,039
net_rshares0
@rana420 ·
nice post.
properties (22)
authorrana420
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t131720252z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-10 13:20:36
last_update2017-11-10 13:20:36
depth1
children0
last_payout2017-11-17 13:20:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation2,402,915,457,848
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,959,518
net_rshares0
@re-engineer ·
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!
properties (22)
authorre-engineer
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171115t074122458z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-15 07:41:27
last_update2017-11-15 07:41:27
depth1
children0
last_payout2017-11-22 07:41:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length466
author_reputation2,464,250,451,683
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,440,963
net_rshares0
@richforever ·
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
properties (22)
authorrichforever
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171114t063417029z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-14 06:34:18
last_update2017-11-14 06:34:18
depth1
children0
last_payout2017-11-21 06:34:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length132
author_reputation6,126,844,828,344
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,327,586
net_rshares0
@rksleung ·
This is a very useful post!
properties (22)
authorrksleung
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180104t054658474z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-04 05:46:57
last_update2018-01-04 05:46:57
depth1
children0
last_payout2018-01-11 05:46:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation33,261,939,147
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,953,684
net_rshares0
@rocketsteem ·
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
properties (22)
authorrocketsteem
permlinkre-themarkymark-20171110t8108661z
categorysteemit
json_metadata{"tags":"steemit","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"}
created2017-11-10 13:10:09
last_update2017-11-10 13:10:09
depth1
children0
last_payout2017-11-17 13:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length157
author_reputation-508,411,958,295
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,958,787
net_rshares0
@romaan-namoor ·
Very informative post... learned a lot from it. So, thanks for that!!
Upvote and follow.

Cheers!
properties (22)
authorromaan-namoor
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171112t091207510z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-12 09:11:42
last_update2017-11-12 09:11:42
depth1
children0
last_payout2017-11-19 09:11:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation7,314,095,596,434
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,128,026
net_rshares0
@saghir ·
I have learn a lot from your post

Posted using [Partiko Android](https://steemit.com/@partiko-android)
properties (22)
authorsaghir
permlinksaghir-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20181001t055840928z
categorysteemit
json_metadata{"app":"partiko"}
created2018-10-01 05:58:42
last_update2018-10-01 05:58:42
depth1
children0
last_payout2018-10-08 05:58:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length103
author_reputation272,807,971,582
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,393,186
net_rshares0
@saintjames ·
Wow, this article was SUPER helpful. I wish my vote was worth more!
properties (22)
authorsaintjames
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180128t005005484z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-28 00:50:06
last_update2018-01-28 00:50:06
depth1
children0
last_payout2018-02-04 00:50:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation189,342,247,889
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id32,871,753
net_rshares0
@shannonpurple ·
This was SUPER helpful!! Thanks for posting. :-) 

https://media.giphy.com/media/xULW8wG4l2XMmMkjzq/giphy.gif
👍  
properties (23)
authorshannonpurple
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180326t151511272z
categorysteemit
json_metadata{"tags":["steemit"],"image":["https://media.giphy.com/media/xULW8wG4l2XMmMkjzq/giphy.gif"],"app":"steemit/0.1"}
created2018-03-26 15:15:12
last_update2018-03-26 15:15:12
depth1
children0
last_payout2018-04-02 15:15:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length109
author_reputation24,287,259,470
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,714,216
net_rshares544,632,143
author_curate_reward""
vote details (1)
@simply-me ·
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
properties (22)
authorsimply-me
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180503t074336090z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemkr/0.1"}
created2018-05-03 07:43:33
last_update2018-05-03 07:43:33
depth1
children2
last_payout2018-05-10 07:43:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length141
author_reputation5,502,142,386,750
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,592,634
net_rshares0
@themarkymark ·
You have to use images.
properties (22)
authorthemarkymark
permlinkre-simply-me-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180503t074847106z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-05-03 07:48:15
last_update2018-05-03 07:48:15
depth2
children1
last_payout2018-05-10 07:48:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation1,774,102,088,090,908
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,593,262
net_rshares0
@simply-me ·
thanks
properties (22)
authorsimply-me
permlinkre-themarkymark-re-simply-me-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180503t080033141z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-05-03 08:00:30
last_update2018-05-03 08:00:30
depth3
children0
last_payout2018-05-10 08:00:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation5,502,142,386,750
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,594,844
net_rshares0
@sitoga ·
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.
properties (22)
authorsitoga
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180208t225250430z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-08 22:52:51
last_update2018-02-08 22:52:51
depth1
children0
last_payout2018-02-15 22:52:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length132
author_reputation62,572,134
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,020,847
net_rshares0
@stephen-somers ·
Couple of great new markup tricks you’ve shown me. 
Thank you.
properties (22)
authorstephen-somers
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171111t093847649z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-11 09:38:48
last_update2017-11-11 09:38:48
depth1
children0
last_payout2017-11-18 09:38:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation19,280,743,077,878
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,038,979
net_rshares0
@suzanrs ·
@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.
properties (22)
authorsuzanrs
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180606t082152021z
categorysteemit
json_metadata{"tags":["steemit"],"users":["themarkymark"],"app":"steemit/0.1"}
created2018-06-06 08:21:48
last_update2018-06-06 08:21:48
depth1
children1
last_payout2018-06-13 08:21:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length532
author_reputation3,621,663,216,690
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,495,482
net_rshares0
@themarkymark ·
I have this post as well as a few others in my footer of every post as it's good for new users.
👍  
properties (23)
authorthemarkymark
permlinkre-suzanrs-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180606t094113059z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-06 09:40:12
last_update2018-06-06 09:40:12
depth2
children0
last_payout2018-06-13 09:40:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation1,774,102,088,090,908
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,503,062
net_rshares4,487,971,841
author_curate_reward""
vote details (1)
@sweetjoy ·
Great tips! Joy
properties (22)
authorsweetjoy
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180206t205803608z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-06 20:58:12
last_update2018-02-06 20:58:12
depth1
children0
last_payout2018-02-13 20:58:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation527,997,377,893
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,492,937
net_rshares0
@t-flames ·
# Thank You 
</br>
><sub>I can't **Thank you** enough.</sub>
👍  
properties (23)
authort-flames
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180302t142142578z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-03-02 14:21:54
last_update2018-03-02 14:21:54
depth1
children0
last_payout2018-03-09 14:21:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation4,418,258,114,759
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,647,325
net_rshares245,285,861
author_curate_reward""
vote details (1)
@tananda ·
$0.04
Thank you for usful information. I'll try to use it
👍  
properties (23)
authortananda
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180816t054249472z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-08-16 05:42:51
last_update2018-08-16 05:42:51
depth1
children0
last_payout2018-08-23 05:42:51
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation1,093,842,202,956
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id68,352,930
net_rshares28,570,941,267
author_curate_reward""
vote details (1)
@teaeyeknow ·
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.
properties (22)
authorteaeyeknow
permlinkre-themarkymark-2018818t19158349z
categorysteemit
json_metadata{"tags":["steemit","writing","technology","howto","ocd-resteem"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-08-18 17:15:15
last_update2018-08-18 17:15:15
depth1
children0
last_payout2018-08-25 17:15:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length342
author_reputation58,918,343,511
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id68,620,739
net_rshares0
@thankgodikkc ·
wow this wonderful
properties (22)
authorthankgodikkc
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180105t113906585z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-04 23:40:48
last_update2018-01-04 23:40:48
depth1
children0
last_payout2018-01-11 23:40:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation757,051,163,247
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,142,588
net_rshares0
@theexplorer ·
$0.10
@themarkymark, possibly one of the most useful posts  I have come across on stremit so far, thank you so much, following and voted!
👍  
properties (23)
authortheexplorer
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171112t223710257z
categorysteemit
json_metadata{"tags":["steemit"],"users":["themarkymark"],"app":"steemit/0.1"}
created2017-11-12 22:37:15
last_update2017-11-12 22:37:15
depth1
children0
last_payout2017-11-19 22:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.093 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length131
author_reputation4,631,018,157,628
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,191,700
net_rshares49,984,137,302
author_curate_reward""
vote details (1)
@veronagirl ·
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.
properties (22)
authorveronagirl
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180613t214339275z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-13 21:43:45
last_update2018-06-13 21:43:45
depth1
children0
last_payout2018-06-20 21:43:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length168
author_reputation753,770,898
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id60,639,620
net_rshares0
@vhicktoriea ·
so much to learn here, its not something I can read and learn at once. I am definitely going to follow you
properties (22)
authorvhicktoriea
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180313t071933934z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-03-13 07:19:54
last_update2018-03-13 07:19:54
depth1
children0
last_payout2018-03-20 07:19:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation2,154,069,205
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,079,324
net_rshares0
@wahab9107 ·
Nice! voteback!
properties (22)
authorwahab9107
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t131433665z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-10 13:14:36
last_update2017-11-10 13:14:36
depth1
children0
last_payout2017-11-17 13:14:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation2,619,802,352,619
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,959,097
net_rshares0
@windrockswater ·
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.
👍  ,
properties (23)
authorwindrockswater
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171110t124852991z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-10 12:48:57
last_update2017-11-10 12:48:57
depth1
children0
last_payout2017-11-17 12:48:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length328
author_reputation429,873,480,185
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,957,125
net_rshares3,091,288,534
author_curate_reward""
vote details (2)
@wisexorfool ·
Super useful! You're an inspiration :)
properties (22)
authorwisexorfool
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180207t040711783z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-07 04:07:12
last_update2018-02-07 04:07:12
depth1
children0
last_payout2018-02-14 04:07:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation91,407,823,059
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,566,486
net_rshares0
@xlaylamx ·
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

 ![image](https://img.esteem.ws/vffbqxw78w.jpg)

> I’ll be following you now
properties (22)
authorxlaylamx
permlinkre-themarkymark-2018311t174159760z
categorysteemit
json_metadata{"tags":["steemit","writing","technology","howto","ocd-resteem"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-03-11 21:42:00
last_update2018-03-11 21:42:00
depth1
children0
last_payout2018-03-18 21:42:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length333
author_reputation189,857,763,394
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id43,780,829
net_rshares0
@xyzashu ·
How to write smaller font size than normal text ...like one written below an image to describe it?
properties (22)
authorxyzashu
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171114t033631038z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-14 03:36:30
last_update2017-11-14 03:36:30
depth1
children1
last_payout2017-11-21 03:36:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation366,144,494,981,430
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,315,880
net_rshares0
@themarkymark ·
Yes, it's called subscript, great for citations.
properties (22)
authorthemarkymark
permlinkre-xyzashu-re-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20171114t060655871z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-14 06:06:54
last_update2017-11-14 06:06:54
depth2
children0
last_payout2017-11-21 06:06:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation1,774,102,088,090,908
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,325,822
net_rshares0
@zeroooc ·
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.
properties (22)
authorzeroooc
permlinkre-themarkymark-markdown-101-how-to-make-kick-ass-posts-on-steemit-20180102t192032475z
categorysteemit
json_metadata{"tags":["steemit"],"links":["www.typora.io"],"app":"steemit/0.1"}
created2018-01-02 19:20:33
last_update2018-01-02 19:20:33
depth1
children0
last_payout2018-01-09 19:20:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length132
author_reputation3,841,235,820,911
root_title"Markdown 101 - How to make kick ass posts on Steemit"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,620,088
net_rshares0