create account

How to post like a pro - Complete guide to Markdown formatting by themarkymark

View this thread on: hive.blogpeakd.comecency.com
· @themarkymark ·
$69.89
How to post like a pro - Complete guide to Markdown formatting
https://images.hive.blog/0x0/https://images.hive.blog/DQmaKk93YGtmguvCbLrAWibHrxiKMFaWtukmHbSzzXez852/image.png

Hive supports a mixture of Markdown & HTML when creating posts.  This is fairly standard regardless of the front-end you choose to post from.  Only partial support of Markdown & HTML are supported.  This guide will cover 98% of the functionality you will need to make your posts look awesome.

This is an updated version of my previous [Markdown 101 guide](https://peakd.com/steemit/@themarkymark/markdown-101-how-to-make-kick-ass-posts-on-steemit).  

I have personally grown to love using Markdown as it allows me to write as I normally will but easily add formatting and style to my posts.  I also use Markdown for notes while developing.

I will cover some HTML elements in this guide as well as they relate to posting on Hive.

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

Headers do wonders for making your posts more readable and reduces reading fatigue.  In fact, I would go so far to say headers will increase how many people read your content by a rather significant margin.

Generally it is good practice to only use one main H1 (#) once in your document and use H2 (##) or H3 (###) for your other headers.  

You also want to make sure you have a space between the pound signs and your text.  It is also generally accepted under Markdown that your first line of text will follow immediately on the next line of a header although most Markdown parsers will accept a blank line.

---

## Emphasis

Emphasis are the "air quotes" of markdown and HTML.

<center>
https://images.hive.blog/0x0/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>
https://images.hive.blog/0x0/https://steemitimages.com/DQmeK5p1Jr4mrwPx9Ce9VYbvVjHDd9hteT9Q6yVnpnMB2p5/giphy.gif
</center>

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

Finally you have ~~strikethrough~~ that allows you to cross out text.  This can be used for removing old text but leaving it there for posterity sake.  It can also be used creatively.

You can do ~~strikethrough~~ by using `~~` before and after your text you want to `~~strikethrough~~`.

As a final note, you can embed ***italics* inside of bold** or *vice **versa***. This isn't used much but good to know.  Just combine them like this:

`***italics* inside of bold** or *vice **versa***`

---

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

I personally like to use horizontal lines between header sections as you can see I have done in this post.  You can also choose to use graphical headers by using images.

---

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

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

```
###### Shopping List
* Eggs
* Thick Toast
* Cinnamon
* Powered Sugar
* Maple Syrup
```

#### Ordered List
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

```
###### 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 Hive
   1. add value
   2. post regularly
   3. engage audience

```
* Succeed on Hive
   1. add value
   2. post regularly
   3. engage audience
```

You can create sub items to your lists by using indents.

###### Making Toast

* Collect two slices of bread
	* Open Bag
	* Pull out two slices
	* Close bag
* Put bread in toaster
* Toast

```
###### Making Toast

* Collect two slices of bread
	* Open Bag
	* Pull out two slices
	* Close bag
* Put bread in toaster
* Toast
```


---

# Formatting

Markdown has some formatting but it lacks certain features that can be supplemented with HTML.  The most common are:

* Centering `<center> </center>`
* Line Break `</br>`
* Sub script `<sub></sub>`
* Paragraphs `<p></p>`

You can also center a header.

# <center> This is a centered H1 header </center> #

`# <center> This is a centered H1 header </center>`

You can also use `<table>` although for simple tables there is a special markdown syntax you should use instead.

---

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

`For example @themarkymark.`

If you want to hyperlink something, but have a customized anchor text then you would use syntax similar to images but without the leading !.

[My profile Page](https://peakd.com/@themarkymark)

`[My profile Page](https://peakd.com/@themarkymark)`

One thing people get confused with is hyperlinking with images.

[![](https://steemitimages.com/DQmPkQhAQceC7aHr4Gy5GKv7LMoiy47P7PyaNCeZBHMpFke/white-bg-with-drop-shadow.gif)](https://hivesigner.com/sign/account-witness-vote?witness=themarkymark&approve=1)     

This image is hyperlinked to my witness voting page.

```
[![](https://i.imgur.com/50dD8mn.gif)](https://hivesigner.com/sign/account-witness-vote?witness=themarkymark&approve=1)    
```

It's kind of confusing syntax, but basically you put an image using ![]() syntax in the space where you would usually use the anchor text.

---


## Images
If you found this post, you most likely already know how to do images on Hive, 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.

**Have you ever wanted to pull images to the left or right of your text?**

<div class="pull-left">https://images.hive.blog/0x0/https://images.hive.blog/DQmNVx4k9XGFQYA7VPt8b9oitLQMaqp1JmAF8SMGhfK2ZXD/image.png</div> This is with the image on the left.

---

<div class="pull-right">https://images.hive.blog/0x0/https://images.hive.blog/DQmNVx4k9XGFQYA7VPt8b9oitLQMaqp1JmAF8SMGhfK2ZXD/image.png</div> This is with the image on the right.

---

```
<div class="pull-left">https://images.hive.blog/0x0/https://images.hive.blog/DQmNVx4k9XGFQYA7VPt8b9oitLQMaqp1JmAF8SMGhfK2ZXD/image.png</div> This is with the image on the left.

---

<div class="pull-right">https://images.hive.blog/0x0/https://images.hive.blog/DQmNVx4k9XGFQYA7VPt8b9oitLQMaqp1JmAF8SMGhfK2ZXD/image.png</div> This is with the image on the right.
```


---

# 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 ``` ```.  Hive doesn't support syntax highlighting like Github does.

```
function test() {
 console.log("look ma’, no spaces");
}
```

``````
```
function test() {
 console.log("look ma’, no spaces");
}
```
``````

Whenever I specify commands to run in tutorials or code, I will use backticks to turn them into code blocks to make it easier to read and understand.

You can also use backticks to highlight preformatted text you don't want to be parsed and formatted.

---

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

```
> Life is 10% what happens to you and 90% how you react to it.
<sub>Charles R. Swindoll</sub>
```

You can nest blockquotes like this.

> Hello
> > Hi

```
> Hello
> > Hi
```

I personally am not a big fan of blockquotes as they are rendered different depending on the front-end style and I usually use my own syntax to do quoting.

*“You must be the change you wish to see in the world.”*
<sub>Gandhi</sub>

```
*“You must be the change you wish to see in the world.”*
<sub>Gandhi</sub>
```

I basically use quotes in italics and do a sub text command on the next line.
I feel this looks better and is consistent.  YMMV.

Finally, if you have blank lines in your quotes, just use a > on the blank line as such.

> Michael says "Hello".
> 
> Bob responds, "Hi!".

```
> Michael says "Hello".
> 
> Bob responds, "Hi!".
```

---

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

```
First Header | Second Header
------------ | -------------
Content cell 1 | Content cell 2
Content column 1 | Content column 2
```

Tables can do wonders for making data more readable in posts and one of my favorite Markdown features.

---


# Inline Code Characters

A feature that came real handy in this article is the ability to show formatting syntax inline by using the ` (backtick) character to avoid triggering the formatting.  

This is not the standard apostrophe but the one under the ESC key that is shared with the tilde key `~`.  This will allow you to show special formatting syntax without triggering formatting.  I also use it to highly commands typically entered in terminal windows like on Linux.  For example:

`sudo apt update`

```
`sudo apt update`
```

---

<center>Securely chat with me on [Keybase](https://keybase.io/officialmarky)
<center>https://images.hive.blog/0x0/https://steemitimages.com/DQmcWxV1dpA1eAtw2ipwZiWZkydyVNU5LaLa2Ak1GUnbGmS/The-Marky-Mark.png</center>
# <center>  [Why you should vote me as witness](https://peakd.com/witness-category/@themarkymark/why-you-should-vote-for-themarkymark-as-witness)  </center> #

[![](https://steemitimages.com/DQmPkQhAQceC7aHr4Gy5GKv7LMoiy47P7PyaNCeZBHMpFke/white-bg-with-drop-shadow.gif)](https://hivesigner.com/sign/account-witness-vote?witness=themarkymark&approve=1)     
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 601 others
👎  , , , , , , , , , , , , , ,
properties (23)
authorthemarkymark
permlinkhow-to-post-like-a-pro-complete-guide-to-markdown-formatting
categorymarkdown
json_metadata{"app":"peakd/2021.06.2","format":"markdown","tags":["markdown","content-creation","palnet","neoxian","technology","archon","proofofbrain"],"users":["themarkymark","themarkymark."],"image":["https://images.hive.blog/DQmaKk93YGtmguvCbLrAWibHrxiKMFaWtukmHbSzzXez852/image.png","https://steemitimages.com/DQmRhLXVeC247nwkPDAJrSCKjSpvswdPztGVAtpBDZ6o56H/giphy.gif","https://steemitimages.com/DQmeK5p1Jr4mrwPx9Ce9VYbvVjHDd9hteT9Q6yVnpnMB2p5/giphy.gif","https://steemitimages.com/DQmPkQhAQceC7aHr4Gy5GKv7LMoiy47P7PyaNCeZBHMpFke/white-bg-with-drop-shadow.gif","https://images.hive.blog/DQmNVx4k9XGFQYA7VPt8b9oitLQMaqp1JmAF8SMGhfK2ZXD/image.png","https://steemitimages.com/DQmcWxV1dpA1eAtw2ipwZiWZkydyVNU5LaLa2Ak1GUnbGmS/The-Marky-Mark.png"]}
created2021-06-11 05:48:15
last_update2021-06-11 05:48:15
depth0
children59
last_payout2021-06-18 05:48:15
cashout_time1969-12-31 23:59:59
total_payout_value41.739 HBD
curator_payout_value28.149 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12,802
author_reputation1,777,444,014,650,444
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,262,793
net_rshares128,536,823,814,417
author_curate_reward""
vote details (680)
@abbey877 ·
Thanks for sharing this guild it will really work a long way for me
👍  , , , ,
properties (23)
authorabbey877
permlinkqujlgr
categorymarkdown
json_metadata{"tags":["stem"],"app":"stemgeeks/0.1","canonical_url":"https://stemgeeks.net/@abbey877/qujlgr"}
created2021-06-11 14:55:39
last_update2021-06-11 14:55:39
depth1
children0
last_payout2021-06-18 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_length67
author_reputation1,707,813,687,277
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,269,574
net_rshares23,769,837,578
author_curate_reward""
vote details (5)
@abimbola753 ·
What an educative article... wow... nice one



---

<center><sub>Posted via [proofofbrain.io](https://www.proofofbrain.io/@abimbola753/qujfh5)</sub></center>
properties (22)
authorabimbola753
permlinkqujfh5
categorymarkdown
json_metadata{"tags":["proofofbrain"],"app":"proofofbrain/0.1","canonical_url":"https://www.proofofbrain.io/@abimbola753/qujfh5"}
created2021-06-11 12:46:18
last_update2021-06-11 12:46:18
depth1
children0
last_payout2021-06-18 12:46: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_length158
author_reputation4,578,619,446,136
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries
0.
accounthiveonboard
weight100
1.
accounttipu
weight100
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,267,548
net_rshares0
@abrarhussain ·
$0.03
My posts aren't getting enough attention, will surely look into it, Thank you for the guidance. Followed you 😊❤️
👍  , , , , , ,
properties (23)
authorabrarhussain
permlinkre-themarkymark-2021611t111616788z
categorymarkdown
json_metadata{"tags":["markdown","content-creation","palnet","neoxian","technology","archon","proofofbrain"],"app":"ecency/3.0.18-mobile","format":"markdown+html"}
created2021-06-11 06:16:18
last_update2021-06-11 06:16:18
depth1
children0
last_payout2021-06-18 06:16:18
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length112
author_reputation30,747,582,157,811
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,263,034
net_rshares99,374,692,973
author_curate_reward""
vote details (7)
@acansa2 ·
This publication is certainly very complete. But I have a question, why when I create double column
 what should go to the left stays on the right side and there is no way to make it go to the left side? If it is assumed that I am using the correct codes, that should not happen.
properties (22)
authoracansa2
permlinkre-themarkymark-2021612t225339711z
categorymarkdown
json_metadata{"tags":["markdown","content-creation","palnet","neoxian","technology","archon","proofofbrain"],"app":"ecency/3.0.17-vision","format":"markdown+html"}
created2021-06-13 02:23:09
last_update2021-06-13 02:23:09
depth1
children0
last_payout2021-06-20 02:23: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_length279
author_reputation702,597,508,142
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,297,724
net_rshares0
@alovely088 ·
Nice writeup. I just hope I'll be able to master all so that I'll be a pro in my postings on hive...
properties (22)
authoralovely088
permlinkre-themarkymark-2021816t211320117z
categorymarkdown
json_metadata{"tags":["markdown","content-creation","palnet","neoxian","technology","archon","proofofbrain"],"app":"ecency/3.0.18-vision","format":"markdown+html"}
created2021-08-16 20:13:24
last_update2021-08-16 20:13:24
depth1
children0
last_payout2021-08-23 20:13: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_length100
author_reputation75,995,083,168,289
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id105,584,770
net_rshares0
@beerlover ·
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p>Hey @themarkymark, here is a little bit of <code>BEER</code> from @sandymeyer for you. Enjoy it!</p> <p>Learn how to <a href='https://peakd.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn <b>FREE BEER</b> each day </a> by staking your <code>BEER</code>.</p> </center><div></div>
properties (22)
authorbeerlover
permlinkre-themarkymark-how-to-post-like-a-pro-complete-guide-to-markdown-formatting-20210611t130100037z
categorymarkdown
json_metadata{"app":"beerlover/2.0"}
created2021-06-11 13:01:00
last_update2021-06-11 13:01:00
depth1
children0
last_payout2021-06-18 13:01: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_length527
author_reputation25,787,219,315,076
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,267,758
net_rshares0
@chasmic-cosm ·
Really wish hive supported LaTeX equations with the $$ syntax!



---

<center><sub>Posted via [proofofbrain.io](https://www.proofofbrain.io/@chasmic-cosm/quj6xh)</sub></center>
👍  , , ,
properties (23)
authorchasmic-cosm
permlinkquj6xh
categorymarkdown
json_metadata{"tags":["proofofbrain"],"app":"proofofbrain/0.1","canonical_url":"https://www.proofofbrain.io/@chasmic-cosm/quj6xh"}
created2021-06-11 09:41:48
last_update2021-06-11 09:41:48
depth1
children0
last_payout2021-06-18 09:41: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_length177
author_reputation4,159,775,155,640
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,265,044
net_rshares23,137,933,587
author_curate_reward""
vote details (4)
@cre47iv3 ·
Thanks for sharing this, already know some of them but your detailing gift me with some new tricks
👍  , , ,
properties (23)
authorcre47iv3
permlinkre-themarkymark-2021611t125745698z
categorymarkdown
json_metadata{"tags":["markdown","content-creation","palnet","neoxian","technology","archon","proofofbrain"],"app":"ecency/3.0.18-mobile","format":"markdown+html"}
created2021-06-11 15:57:45
last_update2021-06-11 15:57:45
depth1
children0
last_payout2021-06-18 15:57: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_length98
author_reputation140,370,657,408,861
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,270,508
net_rshares23,002,627,441
author_curate_reward""
vote details (4)
@cre47iv3 ·
!PIZZA
properties (22)
authorcre47iv3
permlinkre-themarkymark-2021611t125819633z
categorymarkdown
json_metadata{"tags":["markdown","content-creation","palnet","neoxian","technology","archon","proofofbrain"],"app":"ecency/3.0.18-mobile","format":"markdown+html"}
created2021-06-11 15:58:18
last_update2021-06-11 15:58:18
depth1
children1
last_payout2021-06-18 15:58: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_length6
author_reputation140,370,657,408,861
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,270,518
net_rshares0
@pizzabot ·
<div class='pull-right'><center><sup>Connect</sup></center><p><a href="https://discord.gg/Q9bQAKpWGS"><img src="https://files.peakd.com/file/peakd-hive/pizzabot/AKF96fKjnX3wjXERHcKAFHaoHnfTVhXqPjXVz8E1Th9nPiJqmFtaycosVpPBZ7z.png"></a></p></div><div class='pull-right'><center><sup>Trade</sup></center><p><a href='https://hive-engine.com/?p=market&t=PIZZA'><img src="https://files.peakd.com/file/peakd-hive/pizzabot/23sxbi2M4UjELDzQjxPdzubdgfMjHTCtA1xueyxmnhJUrB8136VyK3pqynyWYiZYF9HrC.png"></a></p></div><center><br> <p>@themarkymark! I sent you a slice of <strong><em>$PIZZA</em></strong> on behalf of @cre47iv3.</p> <p>Learn more about <strong><em>$PIZZA Token</em></strong> at <a href="https://hive.pizza">hive.pizza</a> <sub>(2/10)</sub></p> </center><div></div>
properties (22)
authorpizzabot
permlinkre-re-themarkymark-2021611t125819633z-20210611t155933z
categorymarkdown
json_metadata"{"app": "beem/0.24.19"}"
created2021-06-11 15:59:33
last_update2021-06-11 15:59:33
depth2
children0
last_payout2021-06-18 15:59: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_length766
author_reputation7,563,984,529,447
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,270,531
net_rshares0
@da-prince ·
Wow thanks for sharing, this is amazing, I feel like a newbies.
👍  
properties (23)
authorda-prince
permlinkqum5bh
categorymarkdown
json_metadata{"tags":["stem"],"app":"stemgeeks/0.1","canonical_url":"https://stemgeeks.net/@da-prince/qum5bh"}
created2021-06-12 23:59:42
last_update2021-06-12 23:59:42
depth1
children0
last_payout2021-06-19 23:59: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_length63
author_reputation1,268,834,091,657
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,296,314
net_rshares1,262,880,619
author_curate_reward""
vote details (1)
@dickturpin ·
$0.02
You must have seen me bitching about Markdown yesterday. LOL
👍  , , , , ,
properties (23)
authordickturpin
permlinkre-themarkymark-2021611t9945740z
categorymarkdown
json_metadata{"tags":["markdown","content-creation","palnet","neoxian","technology","archon","proofofbrain"],"app":"ecency/3.0.17-vision","format":"markdown+html"}
created2021-06-11 08:09:45
last_update2021-06-11 08:09:45
depth1
children3
last_payout2021-06-18 08:09:45
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation42,252,222,279,031
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,264,060
net_rshares76,024,304,623
author_curate_reward""
vote details (6)
@themarkymark ·
Someone brought it up in POB discord, and I linked my original article back on Steem (2017).  I figured it was due for an update.  I think knowing Markdown is very important and something everyone should learn.
👍  
properties (23)
authorthemarkymark
permlinkre-dickturpin-quj2sx
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-11 08:12:33
last_update2021-06-11 08:12:33
depth2
children2
last_payout2021-06-18 08:12: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_length210
author_reputation1,777,444,014,650,444
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,264,081
net_rshares19,393,384
author_curate_reward""
vote details (1)
@dickturpin ·
$0.03
I've bookmarked it to refer to. I'm still not a fan of it, though. I prefer HTML.
👍  
properties (23)
authordickturpin
permlinkre-themarkymark-2021611t124928475z
categorymarkdown
json_metadata{"tags":["markdown"],"app":"ecency/3.0.17-vision","format":"markdown+html"}
created2021-06-11 11:49:27
last_update2021-06-11 11:49:27
depth3
children0
last_payout2021-06-18 11:49:27
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation42,252,222,279,031
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,266,743
net_rshares81,599,070,615
author_curate_reward""
vote details (1)
@sinistry ·
Agreed. I didn't know this stuff. I've seen something before tbat tiuched on italics and bold but i had forgotten that. I need to play around with it to make it more reflexively accessible. 
👍  , , , ,
properties (23)
authorsinistry
permlinkre-themarkymark-qukqcb
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-12 05:38:36
last_update2021-06-12 05:38:36
depth3
children0
last_payout2021-06-19 05:38: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_length190
author_reputation13,185,830,863,871
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,281,247
net_rshares25,139,661,580
author_curate_reward""
vote details (5)
@dizzybee ·
Thanks a lot for the useful guide! Bookmarked for later :)
👍  , , , ,
properties (23)
authordizzybee
permlinkre-themarkymark-qukvkp
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-12 07:31:36
last_update2021-06-12 07:31:36
depth1
children0
last_payout2021-06-19 07:31: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_length58
author_reputation2,701,737,255,915
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,282,762
net_rshares23,873,677,176
author_curate_reward""
vote details (5)
@eldami99 · (edited)
Estaba buscando algo como esto no sabía como poner líneas horizontales, excelente publicación para alguien nuevo como yo, gracias. Me lo guardaré.
properties (22)
authoreldami99
permlinkre-themarkymark-2023328t19516362z
categorymarkdown
json_metadata{"tags":["markdown","content-creation","palnet","neoxian","technology","archon","proofofbrain"],"app":"ecency/3.0.31-vision","format":"markdown+html"}
created2023-03-28 23:51:06
last_update2023-03-28 23:52:06
depth1
children0
last_payout2023-04-04 23:51: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_length146
author_reputation24,581,740,965
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,052,264
net_rshares0
@elindos ·
Awepost post @themarkymark, thanks a lot for this input.
It will be very useful to have all of it explained so clearly!
properties (22)
authorelindos
permlinkre-themarkymark-quvyb8
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-18 07:04:27
last_update2021-06-18 07:04:27
depth1
children0
last_payout2021-06-25 07:04: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_length119
author_reputation61,197,498,479,493
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,403,542
net_rshares0
@flaxz ·
$0.03
This is a great guide and very useful, I have cross posted it to the Hive Affiliates Community to be included in our knowledgebase for newbies and for growing as a content creator.

There is one question I have about the `<center></center>` element, when posting 3speak videos they wrap the video embed in that, but there is a problem with it since it makes the whole post centered, is there some way to make it work correctly and not just remove that element which I currently do?
👍  , , , ,
properties (23)
authorflaxz
permlinkre-themarkymark-quj6cz
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-11 09:29:24
last_update2021-06-11 09:29:24
depth1
children0
last_payout2021-06-18 09:29:24
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length481
author_reputation427,850,762,332,874
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,264,883
net_rshares86,297,062,469
author_curate_reward""
vote details (5)
@floramarela ·
Genial por fin puedo centrar mis imágenes! Util información gracias.
👍  , , ,
properties (23)
authorfloramarela
permlinkre-themarkymark-qujsk6
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-11 17:29:18
last_update2021-06-11 17:29:18
depth1
children0
last_payout2021-06-18 17:29: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_length68
author_reputation4,126,418,258,397
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,271,899
net_rshares22,014,097,292
author_curate_reward""
vote details (4)
@focus.folks ·
Sweet resource Markymark, thanks for putting it together
properties (22)
authorfocus.folks
permlinkre-themarkymark-2021816t12631567z
categorymarkdown
json_metadata{"tags":["markdown","content-creation","palnet","neoxian","technology","archon","proofofbrain"],"app":"ecency/3.0.18-vision","format":"markdown+html"}
created2021-08-15 15:56:33
last_update2021-08-15 15:56:33
depth1
children0
last_payout2021-08-22 15:56: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_length56
author_reputation7,473,291,779,035
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id105,559,288
net_rshares0
@garybilbao · (edited)
$0.03
<div class="text-justify">
<p>
Excellent publication. Thanks for refreshing these things in my head.

Although we are aware that not always a good markdown is necessary to receive good votes. Sure, the title of your post was:

>***How to post like a pro***.

It wasn't:

>***Publish with markdown so as to aim for good votes***.

Lol 

Best regards.

</p></div>
👍  , , , , , ,
properties (23)
authorgarybilbao
permlinkre-themarkymark-quixmv
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-11 06:21:09
last_update2021-06-11 06:23:27
depth1
children0
last_payout2021-06-18 06:21:09
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length361
author_reputation124,406,978,677,171
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,263,082
net_rshares100,279,272,967
author_curate_reward""
vote details (7)
@goldgrifin007 ·
Thank you for your help!
properties (22)
authorgoldgrifin007
permlinkre-themarkymark-quj0r6
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-11 07:28:18
last_update2021-06-11 07:28:18
depth1
children0
last_payout2021-06-18 07:28: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_length24
author_reputation10,409,688,954,531
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,263,651
net_rshares0
@greengalletti ·
Great guide to find it always at hand. Markdown has some plugins but they are paid. Very useful the final instruction for Linux. I use Xubuntu. Greetings and thanks for sharing this guide @themarkymark.
👍  , ,
properties (23)
authorgreengalletti
permlinkqujqwr
categorymarkdown
json_metadata{"users":["themarkymark"],"app":"hiveblog/0.1"}
created2021-06-11 16:53:24
last_update2021-06-11 16:53:24
depth1
children0
last_payout2021-06-18 16:53: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_reputation107,093,399,551,238
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,271,342
net_rshares21,295,389,259
author_curate_reward""
vote details (3)
@hivebeliever ·
It might be worth adding something that took me a while to figure out. None of the searches I processed listed this information, I figured it out through trial and error. 

When using the centre option, everything following will center, even when /Center is used. 

To realign left, < BR > (I can’t get the back tick to work) must be added (I’m sure < p > would work as well).

A couple other side notes: 

- dash ‘-‘ also produces bullet points and is easier to add than the alternative, *

- if one wants space between headers, br needs to be used on the next line

- to get text beside a photo, the image needs to be small enough to allow space; markdown doesn’t accept HTML code sizing. Either download or design a small enough variation, or edit.

- emphasis and bold star * codes don’t work after punctuation, so the * must be placed before the period, question mark, or whatever. 

 - more than one < sub > can be used to create even smaller text than the small text. <sub> one sub</sub> <sub><sub> two subs </sub></sub> <sub><sub><sub> three subs </sub> </sub> </sub> <sub><sub><sub><sub>four subs </sub></sub></sub></sub>

- two lines ____ with italic font in between cad serve perfectly as block quote or links 

- larger headers can also be used for block quotes, or links.

- headers and spacing can be applied differently than standard use, for creative and visual appealing formatting (especially for poets) 

____
____

Mark, thank you for your list. There were a few things that I didn’t already know, and one partially behaviours I’ve been trying to get to work for me. Very handy. 
👍  , , ,
properties (23)
authorhivebeliever
permlinkre-themarkymark-quj13d
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-11 07:35:36
last_update2021-06-11 07:35:36
depth1
children2
last_payout2021-06-18 07:35: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_length1,600
author_reputation525,127,162,777
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,263,755
net_rshares23,140,418,275
author_curate_reward""
vote details (4)
@bashadow ·
> to get text beside a photo, the image needs to be small enough to allow space; markdown doesn’t accept HTML code sizing. Either download or design a small enough variation, or edit.

You can resize images via code:
<center><sub>Tiny Picture links back to my blog:</sub></center><center><a href="https://peakd.com/@bashadow"><img src=https://images.hive.blog/100x50/https://files.peakd.com/file/peakd-hive/bashadow/CSiw0Xl5-avatar3.png></a>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;   <a href="https://peakd.com/@bashadow"><img src=https://images.hive.blog/100x50/https://files.peakd.com/file/peakd-hive/bashadow/CSiw0Xl5-avatar3.png></a>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href="https://peakd.com/@bashadow"><img src=https://images.hive.blog/100x50/https://files.peakd.com/file/peakd-hive/bashadow/CSiw0Xl5-avatar3.png></a>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="https://peakd.com/@bashadow"><img src=https://images.hive.blog/100x50/https://files.peakd.com/file/peakd-hive/bashadow/CSiw0Xl5-avatar3.png></a></center>
By combining the resize and making it an image link you can have nice sized images for a line of icon links.
`<center><sub>Tiny Picture links back to my blog:</sub></center><center><a href="https://peakd.com/@bashadow"><img src=https://images.hive.blog/100x50/https://files.peakd.com/file/peakd-hive/bashadow/CSiw0Xl5-avatar3.png></a></center>`
This is the segment that allows the resize `https://images.hive.blog/100x50/`

To add blank spaces between the images use the HTML Code `&nbsp;` I find stringing 5 blank spaces works pretty good.
properties (22)
authorbashadow
permlinkre-hivebeliever-qxy23w
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.07.5"}
created2021-08-16 18:02:18
last_update2021-08-16 18:02:18
depth2
children0
last_payout2021-08-23 18:02: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_length1,556
author_reputation100,388,692,638,882
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id105,582,767
net_rshares0
@themarkymark ·
$0.07
> When using the centre option, everything following will center, even when /Center is used.

This isn't really true, but there are some oddities that do cause a center to be unclosed.  But most cases `<center></center>` works fine.

> emphasis and bold star * codes don’t work after punctuation, so the * must be placed before the period, question mark, or whatever.

**Sure they do.**  You just can't have a space between it.

https://i.imgur.com/V8Fej4a.png
👍  , , , ,
properties (23)
authorthemarkymark
permlinkre-hivebeliever-quj19j
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-11 07:39:21
last_update2021-06-11 07:39:21
depth2
children0
last_payout2021-06-18 07:39:21
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length461
author_reputation1,777,444,014,650,444
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,263,784
net_rshares215,028,505,556
author_curate_reward""
vote details (5)
@jacobtothe ·
What are the best ways to embed symbols not found on standard keyboards? I know on Windows, I can use the alt key and the number pad to fill a lot of these needs. Linux so far does not seem to offer that kind of functionality, although I admit I have not delved very deep. At any rate, it might be a useful follow-up if you want to write it before I get around to it myself.
👎  
properties (23)
authorjacobtothe
permlinkre-themarkymark-quntq9
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-13 21:44:33
last_update2021-06-13 21:44:33
depth1
children1
last_payout2021-06-20 21:44: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_length374
author_reputation567,282,754,640,136
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,312,671
net_rshares-130,283,668,113
author_curate_reward""
vote details (1)
@themarkymark ·
$0.03
Each platform usually has a tool for entering in symbols.

Like on Windows there is the Character Map Tool

https://i.imgur.com/begDQSh.png

Mac OS has a character palette

![image.png](https://files.peakd.com/file/peakd-hive/themarkymark/23tcJe3m32oYesKSg2xUjKSFtwm2NKj4W8SiQpnzvVDJeLdCYzXidSqjbWnF4UjV15sA3.png)

On Linux, there are multiple character map tools depending on the desktop you are using.

For example, GNOME.

![image.png](https://files.peakd.com/file/peakd-hive/themarkymark/23tHZ6Xhkm5vLB8HnUk83sxyzSDK6boTEraipvnvYhLomoyii8ZFaHi8so2bDnSicJSoG.png)



👍  
properties (23)
authorthemarkymark
permlinkre-jacobtothe-qunumt
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-13 22:04:06
last_update2021-06-13 22:04:06
depth2
children0
last_payout2021-06-20 22:04:06
cashout_time1969-12-31 23:59:59
total_payout_value0.013 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length570
author_reputation1,777,444,014,650,444
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,313,256
net_rshares92,084,883,185
author_curate_reward""
vote details (1)
@jarvie ·
Great resource for a bunch of collections I think.
👍  , , ,
properties (23)
authorjarvie
permlinkre-themarkymark-qujgw9
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-11 13:16:57
last_update2021-06-11 13:16:57
depth1
children0
last_payout2021-06-18 13:16: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_length50
author_reputation388,491,264,112,133
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,268,003
net_rshares22,721,025,991
author_curate_reward""
vote details (4)
@jersteemit ·
Very interesting and detailed guide on post formatting. Thanks for taking out time to come up with this. Really educating. Bookmarked!



---

<center><sub>Posted via [proofofbrain.io](https://www.proofofbrain.io/@jersteemit/qumyuh)</sub></center>
properties (22)
authorjersteemit
permlinkqumyuh
categorymarkdown
json_metadata{"tags":["proofofbrain"],"app":"proofofbrain/0.1","canonical_url":"https://www.proofofbrain.io/@jersteemit/qumyuh"}
created2021-06-13 10:37:30
last_update2021-06-13 10:37:30
depth1
children0
last_payout2021-06-20 10:37: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_length247
author_reputation48,056,597,919,092
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,303,023
net_rshares0
@justclickindiva ·
Thanks for the tutorial. Some items I already knew and use daily. I did have one item that baffles me.

When I click on the ordered list feature, type my 1st list item; then new paragraph under that, when I begin the 2nd list item, it displays #2 in the markdown draft, but reverts to number 1 in the preview.

What am I doing wrong?


👍  , , , ,
properties (23)
authorjustclickindiva
permlinkre-themarkymark-qultfo
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-12 19:43:00
last_update2021-06-12 19:43:00
depth1
children0
last_payout2021-06-19 19:43: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_length336
author_reputation700,538,396,509,967
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,292,948
net_rshares24,115,085,524
author_curate_reward""
vote details (5)
@kemmyb ·
Superb! Bookmarked! It will be my guide on formatting my blogs here.
Thank you! 🙂
properties (22)
authorkemmyb
permlinkre-themarkymark-2021612t143817537z
categorymarkdown
json_metadata{"tags":["markdown","content-creation","palnet","neoxian","technology","archon","proofofbrain"],"app":"ecency/3.0.17-vision","format":"markdown+html"}
created2021-06-12 13:38:30
last_update2021-06-12 13:38:30
depth1
children0
last_payout2021-06-19 13:38: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_length81
author_reputation348,394,601,960,141
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,287,371
net_rshares0
@ki4jgt ·
Thanks for this. Wasn't aware you could mix MD with HTML. May start giving that a shot.
👍  , , ,
properties (23)
authorki4jgt
permlinkqujf2g
categorymarkdown
json_metadata{"app":"hiveblog/0.1"}
created2021-06-11 12:37:33
last_update2021-06-11 12:37:33
depth1
children0
last_payout2021-06-18 12:37: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_length87
author_reputation35,571,441,245
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,267,434
net_rshares22,534,127,798
author_curate_reward""
vote details (4)
@lizelle ·
Thank you very much for this useful guide @themarkymark!
👍  , , ,
properties (23)
authorlizelle
permlinkre-themarkymark-quj17j
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-11 07:38:12
last_update2021-06-11 07:38:12
depth1
children0
last_payout2021-06-18 07:38: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_length56
author_reputation1,129,661,035,200,041
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,263,774
net_rshares23,269,447,837
author_curate_reward""
vote details (4)
@mattbrown.art ·
$0.07
Thanks for this! I've bookmarked it so I can refer to it now and again. Line-breaks were one thing I was struggling with (I don't know why I didn't just try the HTML tag!).
👍  , , , , , ,
properties (23)
authormattbrown.art
permlinkre-themarkymark-2021611t95738244z
categorymarkdown
json_metadata{"tags":["markdown","content-creation","palnet","neoxian","technology","archon","proofofbrain"],"app":"ecency/3.0.17-vision","format":"markdown+html"}
created2021-06-11 08:57:39
last_update2021-06-11 08:57:39
depth1
children0
last_payout2021-06-18 08:57:39
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation4,406,571,456,168
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,264,534
net_rshares214,915,017,655
author_curate_reward""
vote details (7)
@mattsbeamer ·
Hello @themarkymark such a great post. There is so much I can now do, which my app never allowed me to do before.  Thank you!!  Matt
👍  , , ,
properties (23)
authormattsbeamer
permlinkre-themarkymark-2021612t15413963z
categorymarkdown
json_metadata{"tags":["markdown","content-creation","palnet","neoxian","technology","archon","proofofbrain"],"app":"ecency/3.0.18-mobile","format":"markdown+html"}
created2021-06-11 22:54:12
last_update2021-06-11 22:54:12
depth1
children0
last_payout2021-06-18 22:54: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_length132
author_reputation19,323,906,029,409
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,276,611
net_rshares22,270,957,289
author_curate_reward""
vote details (4)
@melinda010100 ·
Re-hived and bookmarked. This is awesome. Thank you. 
👍  , , , ,
properties (23)
authormelinda010100
permlinkre-themarkymark-2021612t651827z
categorymarkdown
json_metadata{"tags":["markdown","content-creation","palnet","neoxian","technology","archon","proofofbrain"],"app":"ecency/3.0.18-mobile","format":"markdown+html"}
created2021-06-12 11:51:09
last_update2021-06-12 11:51:09
depth1
children0
last_payout2021-06-19 11:51: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_length53
author_reputation1,056,850,982,687,406
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,285,984
net_rshares24,287,745,485
author_curate_reward""
vote details (5)
@oscarcampos86 ·
Muy completa tu explicación. Lo felicito. Aprendí nuevas cosas con solo leer
👍  , , , ,
properties (23)
authoroscarcampos86
permlinkqulkie
categorymarkdown
json_metadata{"app":"hiveblog/0.1"}
created2021-06-12 16:30:15
last_update2021-06-12 16:30:15
depth1
children0
last_payout2021-06-19 16:30: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_length76
author_reputation50,541,771,804,255
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries
0.
accounthiveonboard
weight100
1.
accounttipu
weight100
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,289,933
net_rshares23,713,976,427
author_curate_reward""
vote details (5)
@papilloncharity ·
Thank you and I was meaning to get back to this, but the powercuts are sowing havoc over here.
Reblogged for future refs and to let others see it.
properties (22)
authorpapilloncharity
permlinkre-themarkymark-2021613t4329709z
categorymarkdown
json_metadata{"tags":["markdown","content-creation","palnet","neoxian","technology","archon","proofofbrain"],"app":"ecency/3.0.16-surfer","format":"markdown+html"}
created2021-06-13 02:32:09
last_update2021-06-13 02:32:09
depth1
children0
last_payout2021-06-20 02:32: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_length146
author_reputation2,501,530,694,645,929
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,297,812
net_rshares0
@playfulfoodie ·
Aah I didn't know about the ~~strikethrough~~ thingies, good to know! Learn something new every day :-)
👍  , , , , ,
properties (23)
authorplayfulfoodie
permlinkre-themarkymark-2021611t8945589z
categorymarkdown
json_metadata{"tags":["markdown","content-creation","palnet","neoxian","technology","archon","proofofbrain"],"app":"ecency/3.0.17-vision","format":"markdown+html"}
created2021-06-11 06:09:48
last_update2021-06-11 06:09:48
depth1
children2
last_payout2021-06-18 06:09: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_length103
author_reputation121,642,196,164,382
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,262,977
net_rshares24,736,591,883
author_curate_reward""
vote details (6)
@themarkymark ·
> Aah I ~~didn't~~ know about the strikethrough

Ftfy
👍  
properties (23)
authorthemarkymark
permlinkre-playfulfoodie-quix9e
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-11 06:12:51
last_update2021-06-11 06:12:51
depth2
children1
last_payout2021-06-18 06:12: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_length53
author_reputation1,777,444,014,650,444
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,263,004
net_rshares454,615,925
author_curate_reward""
vote details (1)
@playfulfoodie ·
Hah, fair!
properties (22)
authorplayfulfoodie
permlinkre-themarkymark-2021611t81747252z
categorymarkdown
json_metadata{"tags":["markdown"],"app":"ecency/3.0.17-vision","format":"markdown+html"}
created2021-06-11 06:17:48
last_update2021-06-11 06:17:48
depth3
children0
last_payout2021-06-18 06:17: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_length10
author_reputation121,642,196,164,382
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,263,043
net_rshares0
@popurri ·
Hello, very good your publication, I have learned some details of the use of Markdown, I did not know and I want to use to improve my publications. Thank you very much for sharing your knowledge. Regards
👍  , , ,
properties (23)
authorpopurri
permlinkqujkt5
categorymarkdown
json_metadata{"app":"hiveblog/0.1"}
created2021-06-11 14:41:33
last_update2021-06-11 14:41:33
depth1
children0
last_payout2021-06-18 14:41: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_length203
author_reputation196,570,452,891,537
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,269,322
net_rshares22,916,158,999
author_curate_reward""
vote details (4)
@pthker2010 ·
Typing like a pro is very essential,but the message what is been typing is going to pass is very much vital too
👍  , , ,
properties (23)
authorpthker2010
permlinkqujs05
categorymarkdown
json_metadata{"tags":["stem"],"app":"stemgeeks/0.1","canonical_url":"https://stemgeeks.net/@pthker2010/qujs05"}
created2021-06-11 17:17:03
last_update2021-06-11 17:17:03
depth1
children0
last_payout2021-06-18 17:17: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_length111
author_reputation525,845,821,221
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries
0.
accounthiveonboard
weight100
1.
accounttipu
weight100
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,271,715
net_rshares23,090,757,712
author_curate_reward""
vote details (4)
@sandymeyer ·
$0.04
Yeah, I can hyperlink with a image now thank you, ...
Yeah, I can hyperlink with a image now thank you, this is awsome and I did not know that before hahha cool 🍀
!BEER 🍻
!giphy markdown madness

 Posted using [Dapplr](https://app.dapplr.in/av36U4MVA6av1qRUA)
👍  , , , , , ,
properties (23)
authorsandymeyer
permlinkyeah-i-can-hyperlink-with-a-i-jcrajjlarqblhgl8ttgbvycbumnfhadr
categorymarkdown
json_metadata{"app":"dapplr","format":"markdown","tags":["dapplr"],"media":[],"users_tagged":[]}
created2021-06-11 12:59:45
last_update2021-06-11 12:59:45
depth1
children1
last_payout2021-06-18 12:59:45
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length206
author_reputation143,351,896,780,564
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries
0.
accountdapplr
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,267,731
net_rshares124,185,520,735
author_curate_reward""
vote details (7)
@hivegifbot ·
<center>https://media.tenor.com/images/2054b6a7d1657160d21fa30ee294b9e5/tenor.gif
[Via Tenor](https://tenor.com/)</center>
properties (22)
authorhivegifbot
permlinkre-yeah-i-can-hyperlink-with-a-i-jcrajjlarqblhgl8ttgbvycbumnfhadr-20210611t130039z
categorymarkdown
json_metadata"{"app": "beem/0.24.20"}"
created2021-06-11 13:00:39
last_update2021-06-11 13:00:39
depth2
children0
last_payout2021-06-18 13:00: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_length122
author_reputation38,192,557,766,504
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,267,752
net_rshares0
@scholaris.pob ·
Thank you for updating this tool!



---

<center><sub>Posted via [proofofbrain.io](https://www.proofofbrain.io/@scholaris.pob/quju1h)</sub></center>
properties (22)
authorscholaris.pob
permlinkquju1h
categorymarkdown
json_metadata{"tags":["proofofbrain"],"app":"proofofbrain/0.1","canonical_url":"https://www.proofofbrain.io/@scholaris.pob/quju1h"}
created2021-06-11 18:00:54
last_update2021-06-11 18:00:54
depth1
children0
last_payout2021-06-18 18:00: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_length149
author_reputation3,074,855,239,378
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,272,398
net_rshares0
@shiftrox ·
Hi, your post is amazing and I really liked it.

I have a question, is it possible to put an "anchor link" here in ecency? I would love to know, thank you!
properties (22)
authorshiftrox
permlinkre-themarkymark-20211112t15227186z
categorymarkdown
json_metadata{"tags":["markdown","content-creation","palnet","neoxian","technology","archon","proofofbrain"],"app":"ecency/3.0.19-vision","format":"markdown+html"}
created2021-11-12 18:22:06
last_update2021-11-12 18:22:06
depth1
children0
last_payout2021-11-19 18:22: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_length155
author_reputation706,720,618,522,598
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id107,699,463
net_rshares0
@shubhwaj · (edited)
$0.03
Amazing work, 🙌 This is a really great and simplified guide to markdown. I also learned a few things that I didn't know already. Upvoted and Rehived.

Best wishes, keep up the good work!
👍  , , , , , ,
properties (23)
authorshubhwaj
permlinkre-themarkymark-quiyoe
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-11 06:43:33
last_update2021-06-11 06:44:27
depth1
children0
last_payout2021-06-18 06:43:33
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length186
author_reputation15,981,250,845,185
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,263,265
net_rshares99,862,781,624
author_curate_reward""
vote details (7)
@simpleeme ·
Dude!!! *Thank you!!!*
👍  , , ,
properties (23)
authorsimpleeme
permlinkre-themarkymark-quizxy
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-11 07:10:45
last_update2021-06-11 07:10:45
depth1
children0
last_payout2021-06-18 07:10: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_length22
author_reputation29,866,162,395,255
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,263,497
net_rshares22,813,260,778
author_curate_reward""
vote details (4)
@sperosamuel15 ·
Very helpful indeed, wowww
properties (22)
authorsperosamuel15
permlinkre-themarkymark-rb543s
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2022.04.6"}
created2022-04-30 06:45:30
last_update2022-04-30 06:45:30
depth1
children0
last_payout2022-05-07 06:45: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_length26
author_reputation124,425,217,464,621
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id112,771,729
net_rshares0
@sunnyvo ·
Wow! It's been very helpful, just what's I'm looking for! Thanks a lot!
properties (22)
authorsunnyvo
permlinkre-themarkymark-r1y2ll
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.09.1"}
created2021-11-02 12:24:03
last_update2021-11-02 12:24:03
depth1
children0
last_payout2021-11-09 12:24: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_reputation38,661,906,863,277
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id107,457,001
net_rshares0
@tfranzini ·
Awesome! I've been looking for something like this for a while now!
👍  , , ,
properties (23)
authortfranzini
permlinkre-themarkymark-qujked
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-11 14:32:36
last_update2021-06-11 14:32:36
depth1
children0
last_payout2021-06-18 14:32: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_length67
author_reputation39,262,362,858,387
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,269,157
net_rshares23,095,420,345
author_curate_reward""
vote details (4)
@timsunny ·
It quite easy on desktop, but on mobile is kind of a nightmare.
👍  , ,
properties (23)
authortimsunny
permlinkre-themarkymark-qujqcl
categorymarkdown
json_metadata{"tags":["markdown"],"app":"peakd/2021.06.2"}
created2021-06-11 16:41:21
last_update2021-06-11 16:41:21
depth1
children0
last_payout2021-06-18 16:41: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_length63
author_reputation708,420,280,888
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,271,074
net_rshares21,042,281,198
author_curate_reward""
vote details (3)
@xplosive ·
Posting "like a pro" is one thing, but the success of posts is influenced by many factors on the Hive blockchain. There are a lot of people, who post "like a pro", and their posts are still ignored or overlooked.
👎  
properties (23)
authorxplosive
permlinkre-themarkymark-2021611t154059312z
categorymarkdown
json_metadata{"tags":["markdown","content-creation","palnet","neoxian","technology","archon","proofofbrain"],"app":"ecency/3.0.17-mobile","format":"markdown+html"}
created2021-06-11 13:41:00
last_update2021-06-11 13:41:00
depth1
children3
last_payout2021-06-18 13:41: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_length212
author_reputation207,865,079,066,333
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,268,357
net_rshares-10,777,994
author_curate_reward""
vote details (1)
@scholaris ·
We're working on this flaw.  There are some community updates coming soon along with proposal requests to help improve on curating/moderating.  I can't promise it will fix everything 100%.  I can promise, though, we're trying to improve things.



---

<center><sub>Posted via [proofofbrain.io](https://www.proofofbrain.io/@scholaris/quju82)</sub></center>
👍  , , ,
properties (23)
authorscholaris
permlinkquju82
categorymarkdown
json_metadata{"tags":["proofofbrain"],"app":"proofofbrain/0.1","canonical_url":"https://www.proofofbrain.io/@scholaris/quju82"}
created2021-06-11 18:04:51
last_update2021-06-11 18:04:51
depth2
children2
last_payout2021-06-18 18:04: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_length356
author_reputation54,152,744,699,996
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,272,495
net_rshares22,562,103,872
author_curate_reward""
vote details (4)
@papilloncharity ·
@scholaris Great news indeed!
properties (22)
authorpapilloncharity
permlinkre-scholaris-2021613t42927357z
categorymarkdown
json_metadata{"tags":["proofofbrain"],"app":"ecency/3.0.16-surfer","format":"markdown+html"}
created2021-06-13 02:29:24
last_update2021-06-13 02:29:24
depth3
children1
last_payout2021-06-20 02:29:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation2,501,530,694,645,929
root_title"How to post like a pro - Complete guide to Markdown formatting"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,297,776
net_rshares0