create account

Steemit Markdown Basics for Beginners by thecryptofiend

View this thread on: hive.blogpeakd.comecency.com
· @thecryptofiend · (edited)
$28.90
Steemit Markdown Basics for Beginners
# Introduction
![How to Stock Photo](https://i.imgsafe.org/24ef5a0866.jpg "Compass Photo from Thinkstock")

**If you are starting out it can be confusing getting to grips with Markdown.**

Markdown is a formatting system that allows you to make posts quickly using symbols as shortcuts for formatting without the hassle of using html.

Here are some of the most basic markdown shortcuts that I personally have started using. 
___
# Why use Markdown over HTML?
![Simplicity Stock Photo](https://i.imgsafe.org/24f7c5f40e.jpg "Simplicity Photo from Thinkstock")
* Simplicity and ease of use compared to HTML/CSS.
* Faster than HTML/CSS due to less typing.
* Faster than the WYSIWYG Steemit text editor for similar reasons.
* Easier to read/review/spot errors and also edit compared to HTML/CSS.
* Can be combined with HTML/CSS for more advanced formatting and features.

_Once you learn how to use these very basic techniques you will be much quicker at posting._
___
# Other Resources I Recommend
1. For more detailed information I would suggest using the [Markdown Cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) by [Adam Pritchard](https://github.com/adam-p) which has been recommended by a number of people.  
2. You can also pick up tips from other users - there is nothing wrong with asking!
3. In addition I should mention that @charlieshrem has created a markdown editor at [Steempower.org](https://www.steempower.org/editor) which is also a very useful tool for composing and posting in markdown.  _Not only that but it also allows you to save your posts and submit them directly to Steemit!_
___
# Format of this post
**I will  be using screenshots to illustrate the actual text you type into the markdown editor and then illustrate the preview that you get.**

*(This is because if I actually put the markdown text in the post it will not show as is but will become formatted according to the markdown specs.)*

**The markdown text you type has a CREAM background colour to stand out.**  
___
# Basic Points Before we get to the Markdown
Here is a view of what you see when you click on the "Submit a Story" button (A) at the top right of your Steemit browser window:

https://i.imgsafe.org/11c959f389.png

The default view allows the entry of markdown or html below:
https://i.imgsafe.org/11c9742414.png
If you click on the top right corner where it says "Editor" (B) it will take you to the very basic text editor which is fine but **WILL NOT allow you to use markdown or html**.  

Further it could in the past cause you to lose certain html/markdown formatting so I think the last update prevented switching once you start entering text in order to prevent this happening.  

**That said you can still go into the regular text editor by accident before you start typing.  If you find your markdown is not working this may be the reason.  If you can't see the "Markdown" button to switch back you will need to do this:**

**_Copy your text to the clipboard or a separate document and hit clear (C).  The "Markdown" option should reappear as shown below (D), click it and then you can paste your text back in._**
https://i.imgsafe.org/11c940940b.png
___
# The Markdown Bit (Finally!)
___
# Paragraphs
**This is one of the best points about Markdown.** 

Unlike **html** where you need to use formatting tags for paragraphs, simply hitting **Enter/Return** once or twice in **Markdown** will create paragraphs (depending on how you prefer to format).  

It works exactly the same way as a standard word processor.  

_That saves a lot of typing compared to html._
___
# Headings
For headings use a hash symbol "#" followed by a gap:

e.g. you type this:

![Headings MD](https://i.imgsafe.org/243f81d281.png "Heading Markdown")

and you get this:

# Heading 1

## Heading 2

### Heading 3

The more hashes you use the smaller the heading.

You can use up to 6 - NB don't forget to leave a gap between the hashes  or it will confuse the editor.
___
# Italics
Italics use underscores or asterisks

e.g. you type: 

![Italics](https://i.imgsafe.org/243f91d4b3.png "Italics MD")

and you get this:

_underscores_ or
 
*asterisks*
___
# Bold
For bold use double underscores or asterisks

e.g. you type: 

![Bold](https://i.imgsafe.org/243f54a307.png "Bold MD")

and you get:

__double underscore__ 

**double asterisk**
___
# Both Bold and Italic Combined
Mix them (asterisks and underscores) for text that is both italicised and bold:

e.g. you type:

![Mix Bold Italic](https://i.imgsafe.org/243f831352.png "Mix Bold and Italic")

and get:

__*Mixed*__
___
# Numbered Lists:
You type numbered points like this, the number followed by a full stop/period:

![Number Lists](https://i.imgsafe.org/243fcb2340.png "Numbered Lists")

and you get this:

1. Point 1
2. Point 2
3. Point 3
___
# Bulleted Lists 
For bulleted lists use asterisks with a space:

You type:

![Bullet lists](https://i.imgsafe.org/243f69013c.png "Bullet lists")

and you get:

* Point 1
* Point 2
* etc
___
# Links:

The easiest way to do these is to use square brackets to surround your title followed by round brackets (without a gap) with the link:

e.g. you type: 

![Links](https://i.imgsafe.org/243fa0b94b.png "Links MD")

and you get:

[Steemit](https://steemit.com/)
___
# Images are similar but formatted like this:

![Title Text](Image link here "Image Name") 

e.g.
You type: 

![Images MD](https://i.imgsafe.org/243f88d51f.png "Images MD")

and you get:

![My Water Texture Image](https://www.steemimg.com/images/2016/10/09/Arif_Akhtar_Water_Textures_02_of_20e6c74.th.jpg "water texture 2")

{*N.B. You don't have to use a separate image name and file name and can simply use ![Image Title](Image Link) or even use just a link on it's own for Steemit - but just in case there is a problem with the link loading I would still use a title though.*}
___
# Youtube Videos
Thanks to @kryptik in the chat for asking about these as I forgot to mention these in the original edit.  Basically just treat the youtube video like an image link so the format would be:

![Youtube Link Title](Youtube Video Link)
___
# Quotes use the "greater than" mathematical symbol i.e. ">"
e.g. you type: 

![Quotes MD](https://i.imgsafe.org/243fcbf48a.png "Quotes MD")

and you get:

>This is a quote.
___
# Section Dividing Lines
Three or more asterisks, hyphens, or underscores make a dividing line to separate sections.  (Thanks to @cristi for showing me this):

e.g. you type: 

![Section Divisions](https://i.imgsafe.org/243f7ed4d2.png "Section Divisions MD")

and you get 3 identical dividing lines:

---
***
___

The above all look the same in preview regardless of which triple symbol you use.
___
# Extra tips

### If it isn't working there are 3 common possibilities:
1.  You have either a space missing (headings - the editor will see it as a tag) or an extra space in the case of other types of text.
2. You are using the text editor which does not read markdown (which I explain near the top of the post).
3. You are using a feature that is not compatible with the Steemit implementation of markdown - this might happen if you are using some obscure functions.

#### If you get stuck - ASK for help or use Google - there are plenty of online resources like the aforementioned [Markdown Cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet).

#### NOTE - If you use [SteemImg.com](https://www.steemimg.com/thecryptofiend) for image hosting it will automatically create Markdown formatted links for you (plus HTML versions and more) as shown in the screenshot below: 

![SteemImg SC](https://i.imgsafe.org/1352896fb1.png "SteemImg SC")

Thanks to @blueorgy for creating this valuable tool for us to use.
___
# Conclusion
These are just the basics to get you started.  In fact I don't really use anything else besides these markdown tricks to format my post.  As I stated earlier you can find plenty more information on line.  I hope this has been useful and easy to understand.  Please let me know if you spot any mistakes or anything is unclear.
___
# The Obligatory Kitten Shot
Your reward for getting to the end:-
![Kitten Shot](https://i.imgsafe.org/139bc3842a.jpg "Kitten Shot")
___
If you like my work and aren't already, please follow me and check out my blog (I mainly discuss photography but I do other topics too) -  @thecryptofiend
___
_**Image Credits:**_ _All images that aren't personally taken screenshots are taken from my own Thinkstock account.  More information can be supplied on request._
___
I have also created a new channel in the chat dedicated to photography of people/portraits called "[Photography-portraits-people](https://steemit.chat/channel/Photography-portraits-people)".  Please check it out and post your photos there.
___
(Verification for me here: [http://www.aapicture.com/about-me](http://www.aapicture.com/about-me))
___
# *Some of my Previous Posts and Tutorials:*
* _[Portrait experiments with stock photo type processing (free for you to use)](https://steemit.com/photography/@thecryptofiend/portrait-experiments-with-stock-photo-type-processing-free-for-you-to-use)_
* _[Are governments deliberately poisoning the cryptographic/cryptocurrency well?](https://steemit.com/life/@thecryptofiend/are-governments-deliberately-poisoning-the-cryptographic-cryptocurrency-well)_
* _[Bamburgh Castle at Sunset: IR Photos (free for you to use on Steemit)](https://steemit.com/photography/@thecryptofiend/bamburgh-castle-at-sunset-ir-photos-free-for-you-to-use-on-steemit)_
* _[Does your urine look like COCA COLA? - GO STRAIGHT TO HOSPITAL - Rhabdomyolysis](https://steemit.com/life/@thecryptofiend/does-your-urine-look-like-coca-cola-go-straight-to-hospital-rhabdomyolysis)_
* _[Beautiful Abstract Water Textures (for you to use in your own posts)](https://steemit.com/photography/@thecryptofiend/beautiful-abstract-water-textures-for-you-to-use-in-your-own-posts)_
* _[Steemit4free - An idea for a library of free images for Steemit reuse](https://steemit.com/steemit/@thecryptofiend/steemit4free-an-idea-for-a-library-of-free-images-for-steemit-reuse)_
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 747 others
👎  
properties (23)
authorthecryptofiend
permlinkmarkdown-basics-for-beginners
categorysteemit
json_metadata{"tags":["steemit","help","faq","steemsquad","markdown"],"users":["charlieshrem","kryptik","cristi","blueorgy","thecryptofiend"],"image":["https://i.imgsafe.org/24ef5a0866.jpg","https://i.imgsafe.org/24f7c5f40e.jpg","https://i.imgsafe.org/11c959f389.png","https://i.imgsafe.org/11c9742414.png","https://i.imgsafe.org/11c940940b.png","https://i.imgsafe.org/243f81d281.png","https://i.imgsafe.org/243f91d4b3.png","https://i.imgsafe.org/243f54a307.png","https://i.imgsafe.org/243f831352.png","https://i.imgsafe.org/243fcb2340.png","https://i.imgsafe.org/243f69013c.png","https://i.imgsafe.org/243fa0b94b.png","https://i.imgsafe.org/243f88d51f.png","https://www.steemimg.com/images/2016/10/09/Arif_Akhtar_Water_Textures_02_of_20e6c74.th.jpg","https://i.imgsafe.org/243fcbf48a.png","https://i.imgsafe.org/243f7ed4d2.png","https://i.imgsafe.org/1352896fb1.png","https://i.imgsafe.org/139bc3842a.jpg"],"links":["https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet","https://github.com/adam-p","https://www.steempower.org/editor","https://steemit.com/","https://www.steemimg.com/thecryptofiend","https://steemit.chat/channel/Photography-portraits-people","http://www.aapicture.com/about-me","https://steemit.com/photography/@thecryptofiend/portrait-experiments-with-stock-photo-type-processing-free-for-you-to-use","https://steemit.com/life/@thecryptofiend/are-governments-deliberately-poisoning-the-cryptographic-cryptocurrency-well","https://steemit.com/photography/@thecryptofiend/bamburgh-castle-at-sunset-ir-photos-free-for-you-to-use-on-steemit","https://steemit.com/life/@thecryptofiend/does-your-urine-look-like-coca-cola-go-straight-to-hospital-rhabdomyolysis","https://steemit.com/photography/@thecryptofiend/beautiful-abstract-water-textures-for-you-to-use-in-your-own-posts","https://steemit.com/steemit/@thecryptofiend/steemit4free-an-idea-for-a-library-of-free-images-for-steemit-reuse"]}
created2016-10-14 20:22:54
last_update2016-10-15 15:57:06
depth0
children350
last_payout2016-11-15 12:30:57
cashout_time1969-12-31 23:59:59
total_payout_value23.532 HBD
curator_payout_value5.372 HBD
pending_payout_value0.000 HBD
promoted15.000 HBD
body_length10,112
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id1,535,221
net_rshares35,259,050,407,085
author_curate_reward""
vote details (812)
@abasinkanga ·
$0.08
# Very informtive

**Thank you**
I am already putting it into practice

*giggles*
👍  , , ,
properties (23)
authorabasinkanga
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170801t173037666z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-01 17:30:48
last_update2017-08-01 17:30:48
depth1
children1
last_payout2017-08-08 17:30:48
cashout_time1969-12-31 23:59:59
total_payout_value0.059 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation10,395,892,449,375
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,448,698
net_rshares19,163,145,348
author_curate_reward""
vote details (4)
@thecryptofiend ·
Excellent:)
👍  ,
properties (23)
authorthecryptofiend
permlinkre-abasinkanga-re-thecryptofiend-markdown-basics-for-beginners-20170801t200917580z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-01 20:09:09
last_update2017-08-01 20:09:09
depth2
children0
last_payout2017-08-08 20:09: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_length11
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,463,155
net_rshares51,945,066
author_curate_reward""
vote details (2)
@abir20129 ·
it's really help 💓
properties (22)
authorabir20129
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180104t080413941z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-04 08:04:15
last_update2018-01-04 08:04:15
depth1
children0
last_payout2018-01-11 08:04: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_reputation7,765,626,572,026
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,975,984
net_rshares0
@abozar ·
hi am new here ,how it works
properties (22)
authorabozar
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170810t135713096z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-10 13:57:18
last_update2017-08-10 13:57:18
depth1
children1
last_payout2017-08-17 13:57: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_length28
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,397,558
net_rshares0
@thecryptofiend ·
Try https://www.steemithelp.net/
properties (22)
authorthecryptofiend
permlinkre-abozar-re-thecryptofiend-markdown-basics-for-beginners-20170810t141156005z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://www.steemithelp.net/"],"app":"steemit/0.1"}
created2017-08-10 14:11:51
last_update2017-08-10 14:11:51
depth2
children0
last_payout2017-08-17 14:11: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_length32
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,399,832
net_rshares0
@acdevan ·
Thanks for the excellent guide @thecryptofiend! Just starting off with Steem. Looking forward to success!
properties (22)
authoracdevan
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171024t122448997z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thecryptofiend"],"app":"steemit/0.1"}
created2017-10-24 12:24:51
last_update2017-10-24 12:24:51
depth1
children0
last_payout2017-10-31 12:24: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_length105
author_reputation4,592,237,017,337
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,450,867
net_rshares0
@afoclepe02 ·
$0.04
It really showed me reason why my two previous posts look ordinary. But am still having problem with the steamimg.com don't  know how to go by it. Any help will be grateful
👍  , , ,
properties (23)
authorafoclepe02
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170907t101636041z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-09-07 10:16:39
last_update2017-09-07 10:16:39
depth1
children1
last_payout2017-09-14 10:16:39
cashout_time1969-12-31 23:59:59
total_payout_value0.031 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation350,114,368
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,135,593
net_rshares12,970,544,935
author_curate_reward""
vote details (4)
@thecryptofiend ·
You don't have to use it anymore you can drag and drop into the post. If your first image isn't showing up just use markdown for that and you can use Imgur or Imgsafe as alternatives.
👍  
properties (23)
authorthecryptofiend
permlinkre-afoclepe02-re-thecryptofiend-markdown-basics-for-beginners-20170907t124248139z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-09-07 12:42:45
last_update2017-09-07 12:42:45
depth2
children0
last_payout2017-09-14 12:42: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_length183
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,146,498
net_rshares0
author_curate_reward""
vote details (1)
@aknur ·
thanks a lot for useful information
properties (22)
authoraknur
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180119t094348546z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-19 09:43:54
last_update2018-01-19 09:43:54
depth1
children0
last_payout2018-01-26 09:43: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_length35
author_reputation6,654,305,635
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,588,026
net_rshares0
@alderan ·
great thanks for the information, i didn't even now the existance of Mardown.
properties (22)
authoralderan
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180630t133533866z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-30 13:35:33
last_update2018-06-30 13:35:33
depth1
children0
last_payout2018-07-07 13:35: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_length77
author_reputation16,790,683
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id62,873,226
net_rshares0
@ankursengupta ·
The most comprehensive tutorial that I've come across. Thanks a ton!
properties (22)
authorankursengupta
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171019t005829543z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-10-19 00:53:21
last_update2017-10-19 00:53:21
depth1
children0
last_payout2017-10-26 00:53: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_length68
author_reputation23,714,114,028
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,012,578
net_rshares0
@anotherjoe ·
Is there an easier "pull-left" command?

BTW, no puppies = no vote! :P
J/K
👍  ,
properties (23)
authoranotherjoe
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161015t010828623z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 01:08:30
last_update2016-10-15 01:08:30
depth1
children11
last_payout2016-11-15 12:30: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_length74
author_reputation40,326,779,382,210
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,536,953
net_rshares25,525,337,630
author_curate_reward""
vote details (2)
@rubellitefae ·
`<div class="pull-left">Lorem ipsum</div>` Cannot be simplified because it is calling on a CSS stylesheet. For more information about using these divs effectively see <a href="https://steemit.com/free-templates/@rubellitefae/how-to-wordwrap-your-images-like-a-boss">How to Wordwrap Your Images Like a Boss</a>.
I've included a template at the end.
👍  , ,
properties (23)
authorrubellitefae
permlinkre-anotherjoe-re-thecryptofiend-markdown-basics-for-beginners-20161016t090711575z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://steemit.com/free-templates/@rubellitefae/how-to-wordwrap-your-images-like-a-boss"]}
created2016-10-16 09:07:09
last_update2016-10-16 09:07:09
depth2
children3
last_payout2016-11-15 12:30: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_length347
author_reputation10,287,490,968,549
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,546,997
net_rshares6,621,576,878
author_curate_reward""
vote details (3)
@anotherjoe ·
Some really helpful tips there. Thanks.
You can do a simple line break with three asterisks. ***
***
There is another way to float an image. It seemed easier than the div pull command when I saw it. Maybe someday I'll see it again and write it down this time. 

Have you figured a way to get links to show in your description of an image that's pulled left/right? I've tried different things, but the url always gets written out no matter what I try. But the only time I've done the "img src" command was when working with HTML.
properties (22)
authoranotherjoe
permlinkre-rubellitefae-re-anotherjoe-re-thecryptofiend-markdown-basics-for-beginners-20161016t143959918z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-16 14:40:00
last_update2016-10-16 14:40:00
depth3
children0
last_payout2016-11-15 12:30: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_length528
author_reputation40,326,779,382,210
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,548,550
net_rshares0
@anotherjoe ·
dafdsasdfasdsdd<img align="right" src="https://www.gravatar.com/avatar/2e17c621ac02495915a3e9a3767ac3c5?s=32&d=identicon&r=PG">alkdsjfalksdjf;lasdkfjaslkj
><*img align="right" src="doc/subpagelist.png">

Makes it float, but doesn't seem to have "right" or "left" influence here. 

><![Alt](image.jpg#right)

without the < does the same thing. Can't find a way to make it stay to the right or left though.

Might be useful though. :P
properties (22)
authoranotherjoe
permlinkre-rubellitefae-re-anotherjoe-re-thecryptofiend-markdown-basics-for-beginners-20161016t155856693z
categorysteemit
json_metadata{"tags":["steemit"],"image":["https://www.gravatar.com/avatar/2e17c621ac02495915a3e9a3767ac3c5?s=32&d=identicon&r=PG"]}
created2016-10-16 15:58:57
last_update2016-10-16 15:58:57
depth3
children1
last_payout2016-11-15 12:30: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_length432
author_reputation40,326,779,382,210
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,549,074
net_rshares0
@thecryptofiend ·
I'm not sure what you mean by pull left?
👍  
properties (23)
authorthecryptofiend
permlinkre-anotherjoe-re-thecryptofiend-markdown-basics-for-beginners-20161015t012321439z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 01:23:21
last_update2016-10-15 01:23:21
depth2
children6
last_payout2016-11-15 12:30: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_length40
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,537,015
net_rshares2,256,872,052
author_curate_reward""
vote details (1)
@anotherjoe ·
<div class="pull-right">https://steemit.com/images/steemit-share.png<center>like this</center></div>Like when you want an image to post to the right or left of the text.
👍  
properties (23)
authoranotherjoe
permlinkre-thecryptofiend-re-anotherjoe-re-thecryptofiend-markdown-basics-for-beginners-20161015t013219394z
categorysteemit
json_metadata{"tags":["steemit"],"image":["https://steemit.com/images/steemit-share.png"]}
created2016-10-15 01:32:21
last_update2016-10-15 01:32:21
depth3
children5
last_payout2016-11-15 12:30: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_length169
author_reputation40,326,779,382,210
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,537,052
net_rshares25,525,337,630
author_curate_reward""
vote details (1)
@antoniotrento ·
Thanks to the article is very thorough! I wanted to add a trick to further improve the writing here on Steem; I created a [post where I reveal them here](https://steemit.com/steemit/@antoniotrento/steem-and-markdown-some-tricks-to-write-better-and-faster)
👍  
properties (23)
authorantoniotrento
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171219t090833176z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://steemit.com/steemit/@antoniotrento/steem-and-markdown-some-tricks-to-write-better-and-faster"],"app":"steemit/0.1"}
created2017-12-19 09:08:33
last_update2017-12-19 09:08:33
depth1
children0
last_payout2017-12-26 09:08: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_length255
author_reputation437,206,873,306
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,156,056
net_rshares1,119,886,790
author_curate_reward""
vote details (1)
@apertus-cogitari ·
We could use a more comprehensive (advanced) cheatsheet.  For example, if I have:
`# heading one`
`## heading one point one`
`# heading two`
and I want an anchor on "heading two", to form a URL that jumps straight to heading two, how do I do that?  The obvious conventional approach would be to use something like:
`https://steemit.com/steemit/@mynick/my-article#heading-two`
but it does not work.

I know it must be possible, because @ash just filed a [bug report](https://steemit.com/steemit-bug/@ash/steemit-bug-report-comment-anchors) which demonstrates the existence of these undocumented anchors.

(I would reply to that bug report, but sadly the "reply" option is gone on articles that are even slightly old)
👍  
properties (23)
authorapertus-cogitari
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161109t145912139z
categorysteemit
json_metadata{"tags":["steemit"],"users":["ash"],"links":["https://steemit.com/steemit-bug/@ash/steemit-bug-report-comment-anchors"]}
created2016-11-09 14:59:15
last_update2016-11-09 14:59:15
depth1
children1
last_payout2016-11-15 12:30: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_length715
author_reputation840,871,295,863
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,730,591
net_rshares10,034,064,715
author_curate_reward""
vote details (1)
@thecryptofiend · (edited)
I think for that kind of advanced formatting and features you need to combine html/css with Markdown.  So technically it isn't markdown.  

It would definitely be useful to have an official document that lists all the markdown, html and css styling options and how to use them.  

I suspect it will happen eventually but it is probably not a priority.  

Also from what I understand that bug report is referring to linking to a particular comment which is different from what you want.
👍  
properties (23)
authorthecryptofiend
permlinkre-apertus-cogitari-re-thecryptofiend-markdown-basics-for-beginners-20161109t150726546z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-11-09 15:07:27
last_update2016-11-09 15:09:39
depth2
children0
last_payout2016-11-15 12:30: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_length485
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,730,640
net_rshares830,794,252
author_curate_reward""
vote details (1)
@apiprincz ·
Am just getting to know about this,  really helpful but if you get to see this comment.  could you be kind to tell me how I can place image and text side by side.  thanks sir @thecryptofiend
properties (22)
authorapiprincz
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180313t132644641z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thecryptofiend"],"app":"steemit/0.1"}
created2018-03-13 13:28:18
last_update2018-03-13 13:28:18
depth1
children0
last_payout2018-03-20 13: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_length190
author_reputation1,218,919,102,489
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,140,653
net_rshares0
@aprilreign ·
This is so beneficial.. I will need to read it several times. the comments have helpful tidbits also.
👍  
properties (23)
authoraprilreign
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180526t201519716z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-05-26 20:15:39
last_update2018-05-26 20:15:39
depth1
children0
last_payout2018-06-02 20:15: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_length101
author_reputation1,072,106,012
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,851,228
net_rshares0
author_curate_reward""
vote details (1)
@armanmadhvani ·
Why do you think the method for uploading a story is set in this manner as opposed to the more straightforward or simple methods other social media platforms like twitter and Facebook offer for when uploading text?
properties (22)
authorarmanmadhvani
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170713t181802838z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-13 18:18:06
last_update2017-07-13 18:18:06
depth1
children1
last_payout2017-07-20 18: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_length214
author_reputation9,766,027,193
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,367,766
net_rshares0
@thecryptofiend ·
It pretty obvious if you think about it.  Those services don't allow you to format your text.
properties (22)
authorthecryptofiend
permlinkre-armanmadhvani-re-thecryptofiend-markdown-basics-for-beginners-20170713t192731406z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-13 19:27:33
last_update2017-07-13 19:27:33
depth2
children0
last_payout2017-07-20 19:27: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_length93
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,374,512
net_rshares0
@aroseforepona ·
$0.51
Very helpful post for a complete beginner, thank you!
👍  , , , , , , ,
properties (23)
authoraroseforepona
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170617t220852220z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-17 22:08:54
last_update2017-06-17 22:08:54
depth1
children1
last_payout2017-06-24 22:08:54
cashout_time1969-12-31 23:59:59
total_payout_value0.458 HBD
curator_payout_value0.049 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation1,804,334,342
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,128,207
net_rshares24,640,169,308
author_curate_reward""
vote details (8)
@thecryptofiend ·
$0.02
Glad you found it useful:)
👍  , , , ,
properties (23)
authorthecryptofiend
permlinkre-aroseforepona-re-thecryptofiend-markdown-basics-for-beginners-20170617t222127366z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-17 22:21:27
last_update2017-06-17 22:21:27
depth2
children0
last_payout2017-06-24 22:21:27
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,129,002
net_rshares1,265,163,355
author_curate_reward""
vote details (5)
@arvindgharde ·
i just upvoted
properties (22)
authorarvindgharde
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171104t133903870z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-04 13:39:03
last_update2017-11-04 13:39:03
depth1
children0
last_payout2017-11-11 13:39: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_length14
author_reputation66,443,460,774
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,435,416
net_rshares0
@askaboutcrypto ·
$0.25
this guide rocks. thanks @thecryptofiend
👍  , , , , ,
properties (23)
authoraskaboutcrypto
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170625t155355771z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thecryptofiend"],"app":"steemit/0.1"}
created2017-06-25 15:53:48
last_update2017-06-25 15:53:48
depth1
children4
last_payout2017-07-02 15:53:48
cashout_time1969-12-31 23:59:59
total_payout_value0.250 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation10,924,774,537
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,058,282
net_rshares23,830,592,637
author_curate_reward""
vote details (6)
@mraza ·
please up vote
properties (22)
authormraza
permlinkre-askaboutcrypto-re-thecryptofiend-markdown-basics-for-beginners-20180104t054822217z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-04 05:48:21
last_update2018-01-04 05:48:21
depth2
children0
last_payout2018-01-11 05:48: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_length14
author_reputation82,268,035,739
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,953,894
net_rshares0
@thecryptofiend ·
You're welcome!
👍  
properties (23)
authorthecryptofiend
permlinkre-askaboutcrypto-re-thecryptofiend-markdown-basics-for-beginners-20170625t155616169z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-25 15:56:15
last_update2017-06-25 15:56:15
depth2
children2
last_payout2017-07-02 15: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_length15
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,058,590
net_rshares0
author_curate_reward""
vote details (1)
@askaboutcrypto ·
$0.25
btw, I am relatively new to steemit. Is there a way to save specific posts to like a bookmark section to have as quick reference? thanks
👍  , , , ,
properties (23)
authoraskaboutcrypto
permlinkre-thecryptofiend-re-askaboutcrypto-re-thecryptofiend-markdown-basics-for-beginners-20170625t155743210z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-25 15:57:36
last_update2017-06-25 15:57:36
depth3
children1
last_payout2017-07-02 15:57:36
cashout_time1969-12-31 23:59:59
total_payout_value0.240 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length136
author_reputation10,924,774,537
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,058,784
net_rshares23,830,592,637
author_curate_reward""
vote details (5)
@autokjk70 ·
@autokjk70 입니다. 유용한 정보 잘 쓰겠습니다.
팔로우, 보팅하고 갑니다^^
👍  
properties (23)
authorautokjk70
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171228t060843170z
categorysteemit
json_metadata{"tags":["steemit"],"users":["autokjk70"],"app":"steemit/0.1"}
created2017-12-28 06:08:45
last_update2017-12-28 06:08:45
depth1
children0
last_payout2018-01-04 06:08: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_length47
author_reputation41,176,992,574,349
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id25,636,965
net_rshares448,847,800
author_curate_reward""
vote details (1)
@avrdan ·
$0.13
Amazing post. Has all the information you need on how to format your steem posts. I will probably refer to it consistently.
👍  ,
properties (23)
authoravrdan
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170829t095731814z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-29 09:57:30
last_update2017-08-29 09:57:30
depth1
children1
last_payout2017-09-05 09:57:30
cashout_time1969-12-31 23:59:59
total_payout_value0.126 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation147,747,648,092
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,213,043
net_rshares35,535,623,667
author_curate_reward""
vote details (2)
@thecryptofiend ·
$0.08
Glad it is useful for you:)
👍  , ,
properties (23)
authorthecryptofiend
permlinkre-avrdan-re-thecryptofiend-markdown-basics-for-beginners-20170829t114633917z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-29 11:46:33
last_update2017-08-29 11:46:33
depth2
children0
last_payout2017-09-05 11:46:33
cashout_time1969-12-31 23:59:59
total_payout_value0.062 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,220,818
net_rshares23,567,931,500
author_curate_reward""
vote details (3)
@ayarbrough ·
$0.12
Completely new to all of this! This was very helpful! Thanks :)
👍  , , , , ,
properties (23)
authorayarbrough
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170609t110311260z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 11:03:12
last_update2017-06-09 11:03:12
depth1
children1
last_payout2017-06-16 11:03:12
cashout_time1969-12-31 23:59:59
total_payout_value0.091 HBD
curator_payout_value0.027 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation40,041,325,982
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,462,772
net_rshares38,339,336,846
author_curate_reward""
vote details (6)
@thecryptofiend ·
You're welcome!
👍  ,
properties (23)
authorthecryptofiend
permlinkre-ayarbrough-re-thecryptofiend-markdown-basics-for-beginners-20170609t120947786z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 12:09:48
last_update2017-06-09 12:09:48
depth2
children0
last_payout2017-06-16 12: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_length15
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,465,641
net_rshares0
author_curate_reward""
vote details (2)
@ayudiarifki ·
# thank i learn a lot from this great post
properties (22)
authorayudiarifki
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180408t183641584z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-04-08 18:36:51
last_update2018-04-08 18:36:51
depth1
children0
last_payout2018-04-15 18:36: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_length42
author_reputation6,653,788,627
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id49,012,255
net_rshares0
@ayudiarifki ·
oya.. i want to know how to justify a paragraph?
properties (22)
authorayudiarifki
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180408t184010992z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-04-08 18:40:24
last_update2018-04-08 18:40:24
depth1
children0
last_payout2018-04-15 18:40: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_length48
author_reputation6,653,788,627
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id49,012,703
net_rshares0
@bdsdeb ·
I am @bdsdeb starting a new blog here with @steemit. your post does help me for posting on my won steemit blog. thanks @thecryptofiend for this post.
properties (22)
authorbdsdeb
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180323t195854065z
categorysteemit
json_metadata{"tags":["steemit"],"users":["bdsdeb","steemit","thecryptofiend"],"app":"steemit/0.1"}
created2018-03-23 19:59:03
last_update2018-03-23 19:59:03
depth1
children0
last_payout2018-03-30 19:59: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_length149
author_reputation300,591,313
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,212,163
net_rshares0
@befaro ·
thanks! that's useful :)
properties (22)
authorbefaro
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180205t002148711z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-05 00:21:48
last_update2018-02-05 00:21:48
depth1
children0
last_payout2018-02-12 00: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_length24
author_reputation3,494,244,971
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,010,123
net_rshares0
@bestpossibleyou · (edited)
Thanks for the great advice.  

I have just started at Steemit and when I saw we use Markdown I didn't have a clue what it was.

Your post provides a useful starting point to making our posts look good and takes a lot of the fear out of Markdown for new users.

Cheers!
👍  
properties (23)
authorbestpossibleyou
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180301t214720089z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-03-01 21:47:21
last_update2018-03-01 21:48:09
depth1
children0
last_payout2018-03-08 21:47: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_length269
author_reputation256,559,512
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,479,539
net_rshares0
author_curate_reward""
vote details (1)
@bhavnapatel68 ·
Every little info helps...this is a lot..thank you.
👍  
properties (23)
authorbhavnapatel68
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161014t231612378z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 23:16:15
last_update2016-10-14 23:16:15
depth1
children1
last_payout2016-11-15 12:30: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_length51
author_reputation4,976,629,087,476
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,536,378
net_rshares25,523,068,016
author_curate_reward""
vote details (1)
@thecryptofiend ·
I'm glad for that, thank you for support:)
👍  
properties (23)
authorthecryptofiend
permlinkre-bhavnapatel68-re-thecryptofiend-markdown-basics-for-beginners-20161014t232420152z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 23:24:18
last_update2016-10-14 23:24:18
depth2
children0
last_payout2016-11-15 12:30: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_length42
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,536,431
net_rshares0
author_curate_reward""
vote details (1)
@bicha ·
Thank you very much for this informative post that helps newbie like me in the steemit. I feel this post is very helpful for my steemit journey.
properties (22)
authorbicha
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180212t162758322z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-12 16:28:24
last_update2018-02-12 16:28:24
depth1
children0
last_payout2018-02-19 16:28: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_length144
author_reputation753,384,947
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,975,021
net_rshares0
@bolanlebolaji ·
Thank you @thecryptofiend.
This post is very helpful, and I believe for other budding steemians.
properties (22)
authorbolanlebolaji
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180131t100627324z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thecryptofiend"],"app":"steemit/0.1"}
created2018-01-31 10:06:39
last_update2018-01-31 10:06:39
depth1
children0
last_payout2018-02-07 10:06: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_length96
author_reputation8,977,927,694
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,818,876
net_rshares0
@bongkyu · (edited)
스팀잇 가입후 첫 댓글입니다. 매우 유익한 도움이 되었습니다. 감사합니다.
Thank you very much!
properties (22)
authorbongkyu
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171126t031807809z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-26 03:18:15
last_update2017-11-26 03:19:33
depth1
children0
last_payout2017-12-03 03:18: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_length62
author_reputation1,277,699,115
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,535,782
net_rshares0
@braxtonadmin1 ·
$0.09
Thanks @thecryptofiend!!! ,very helpful (Y) <3
👍  ,
properties (23)
authorbraxtonadmin1
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170713t123500969z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thecryptofiend"],"app":"steemit/0.1"}
created2017-07-13 12:35:09
last_update2017-07-13 12:35:09
depth1
children0
last_payout2017-07-20 12:35:09
cashout_time1969-12-31 23:59:59
total_payout_value0.070 HBD
curator_payout_value0.017 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation537,643,479
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,335,513
net_rshares21,402,536,705
author_curate_reward""
vote details (2)
@brianphobos ·
The crazy thing is I was upset when I saw the HTML link go away on the post editor.  So instead of learning Markdown I started doing all my post in Bluefish which is an HTML editor. Then I copy that code into the post editor and it recognizes my HTML.  I think it is tough to make the posts the way I want them if I'm just using the regular editor on here.
👍  
properties (23)
authorbrianphobos
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161015t010412941z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 01:04:12
last_update2016-10-15 01:04:12
depth1
children1
last_payout2016-11-15 12:30: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_length356
author_reputation172,078,876,436,480
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,536,933
net_rshares25,525,337,630
author_curate_reward""
vote details (1)
@thecryptofiend ·
That's basically what I was doing before even though I knew how to use markdown and was using it for comments.  The change has forced me to use markdown for my posts too and it is actually a lot easier and quicker than the html method.  That said I was just typing out all the html into a text editor rather than automating the process in any way.  I just find it works better for the way I think and write.
properties (22)
authorthecryptofiend
permlinkre-brianphobos-re-thecryptofiend-markdown-basics-for-beginners-20161015t011358353z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 01:13:57
last_update2016-10-15 01:13:57
depth2
children0
last_payout2016-11-15 12:30: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_length407
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,536,973
net_rshares0
@capelight ·
Excellent, most helpful for someone just starting out.
properties (22)
authorcapelight
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180505t204319425z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-05-05 20:43:18
last_update2018-05-05 20:43:18
depth1
children0
last_payout2018-05-12 20:43: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_length54
author_reputation311,654,163,032
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,085,577
net_rshares0
@carlottafr ·
Thank you very much, I have just subscribed and I am going to use your advice​.
Have a great day

Carlotta
properties (22)
authorcarlottafr
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171211t130343804z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-11 13:03:42
last_update2017-12-11 13:03:42
depth1
children0
last_payout2017-12-18 13:03: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_length106
author_reputation10,750,985,730
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,110,806
net_rshares0
@carltoon ·
Thank you for this introduction!
I wish there was a way to do this with LaTeX.
properties (22)
authorcarltoon
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180107t082626454z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-07 08:25:33
last_update2018-01-07 08:25:33
depth1
children0
last_payout2018-01-14 08:25: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_length78
author_reputation571,310,488
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,711,918
net_rshares0
@caution ·
$0.20
awesome these information took time reading but definitely worth it...Thank you so much
👍  , , , , ,
properties (23)
authorcaution
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170627t134611977z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-27 13:46:12
last_update2017-06-27 13:46:12
depth1
children0
last_payout2017-07-04 13:46:12
cashout_time1969-12-31 23:59:59
total_payout_value0.152 HBD
curator_payout_value0.045 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation4,239,217,322
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,332,349
net_rshares22,190,229,820
author_curate_reward""
vote details (6)
@chadcrypto ·
Great post there @thecryptofiend This will help me a lot! :)
👍  
properties (23)
authorchadcrypto
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161014t205018446z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thecryptofiend"]}
created2016-10-14 20:50:15
last_update2016-10-14 20:50:15
depth1
children1
last_payout2016-11-15 12:30: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_length60
author_reputation3,524,873,133,500
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,535,388
net_rshares29,776,787,053
author_curate_reward""
vote details (1)
@thecryptofiend ·
Great glad it helps:)
properties (22)
authorthecryptofiend
permlinkre-chadcrypto-re-thecryptofiend-markdown-basics-for-beginners-20161014t211934077z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 21:19:33
last_update2016-10-14 21:19:33
depth2
children0
last_payout2016-11-15 12:30: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_length21
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,535,591
net_rshares0
@coolbee ·
Thanks for sharing! This very useful for new starters~
properties (22)
authorcoolbee
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180418t100806854z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-04-18 10:09:21
last_update2018-04-18 10:09:21
depth1
children0
last_payout2018-04-25 10:09: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_length54
author_reputation4,438,750,579
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id50,731,116
net_rshares0
@crypticalias ·
You can add some navigation arrows to your post like this (for example when you want to post a series of photos): 
<center>https://steemitimages.com/256x512/https://steemitimages.com/DQmb8Y4v5ySdMpkpWPaekaqBGcwDBuhG5sL21tfbo21q2gs/santa%20cruz.png</center>
<center>[<-Previous](https://steemit.com/photography/@crypticalias/photo-series-places-3) &nbsp; [Next->](https://steemit.com/photography/@crypticalias/photo-series-places-4)</center>

Just copy this and replace the URLs:
\<center>(URL2)\</center>
\<center>\[<-Previous](URL1) \&nbsp; \[Next->](URL3)\</center>
👍  
properties (23)
authorcrypticalias
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180116t182828138z
categorysteemit
json_metadata{"tags":["steemit"],"image":["https://steemitimages.com/256x512/https://steemitimages.com/DQmb8Y4v5ySdMpkpWPaekaqBGcwDBuhG5sL21tfbo21q2gs/santa%20cruz.png"],"links":["https://steemit.com/photography/@crypticalias/photo-series-places-3","https://steemit.com/photography/@crypticalias/photo-series-places-4"],"app":"steemit/0.1"}
created2018-01-16 18:28:27
last_update2018-01-16 18:28:27
depth1
children0
last_payout2018-01-23 18:28: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_length567
author_reputation1,484,671,564,283
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,999,855
net_rshares0
author_curate_reward""
vote details (1)
@crypto-utopia ·
Thanks for the post, very informative for new users.
👍  
properties (23)
authorcrypto-utopia
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180205t180532541z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-05 18:05:18
last_update2018-02-05 18:05:18
depth1
children0
last_payout2018-02-12 18:05: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_length52
author_reputation18,193,637
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,201,387
net_rshares614,455,332
author_curate_reward""
vote details (1)
@cryptomancer ·
Great tutorial!  I think this will be helpful for a lot of people.  I definitely prefer markdown over raw HTML.  HTML allows more fine-tuned control, but it can be finicky to get it just right and it feels more clunky than the simpler markdown syntax.  Markdown also makes it easy to establish and stick with a consistent style from post to post.  Becoming proficient with it is something that every aspiring blogger should aim for!
👍  
properties (23)
authorcryptomancer
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161015t040553809z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 04:05:54
last_update2016-10-15 04:05:54
depth1
children1
last_payout2016-11-15 12:30: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_length432
author_reputation27,995,620,368,012
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,537,726
net_rshares29,780,100,568
author_curate_reward""
vote details (1)
@thecryptofiend ·
Thanks.  Yes I definitely agree:)
👍  
properties (23)
authorthecryptofiend
permlinkre-cryptomancer-re-thecryptofiend-markdown-basics-for-beginners-20161015t130344243z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 13:03:42
last_update2016-10-15 13:03:42
depth2
children0
last_payout2016-11-15 12:30: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_length33
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,540,159
net_rshares21,032,624,309
author_curate_reward""
vote details (1)
@daba ·
thank you, this post helped so much!
properties (22)
authordaba
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180113t020511684z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-13 02:05:12
last_update2018-01-13 02:05:12
depth1
children0
last_payout2018-01-20 02:05: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_length36
author_reputation118,312,298
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,130,263
net_rshares0
@daigv ·
Thanks. Very useful article
But I don't find guideline about alignment. Could you help?
👍  
properties (23)
authordaigv
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180630t082712682z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-30 08:27:15
last_update2018-06-30 08:27:15
depth1
children0
last_payout2018-07-07 08:27: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_length87
author_reputation543,359,566
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id62,842,985
net_rshares263,590,431
author_curate_reward""
vote details (1)
@danlloyd ·
Thanks this information was very helpful.
properties (22)
authordanlloyd
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180115t062347764z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-15 06:23:48
last_update2018-01-15 06:23:48
depth1
children0
last_payout2018-01-22 06:23: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_length41
author_reputation115,773,223,185
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,632,515
net_rshares0
@darthnava ·
Great, bookmarked for future reference.
👍  , ,
properties (23)
authordarthnava
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161015t161856941z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 16:18:54
last_update2016-10-15 16:18:54
depth1
children1
last_payout2016-11-15 12:30: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_length39
author_reputation202,525,271,727,303
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,541,381
net_rshares30,165,563,648
author_curate_reward""
vote details (3)
@thecryptofiend ·
Thanks glad you found it helpful:)
properties (22)
authorthecryptofiend
permlinkre-darthnava-re-thecryptofiend-markdown-basics-for-beginners-20161015t162120339z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 16:21:18
last_update2016-10-15 16:21:18
depth2
children0
last_payout2016-11-15 12:30: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_length34
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,541,403
net_rshares0
@dashfit ·
Thank you so much that is very helpful!
👍  
properties (23)
authordashfit
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161014t210117129z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 21:01:21
last_update2016-10-14 21:01:21
depth1
children1
last_payout2016-11-15 12:30: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_length39
author_reputation2,997,042,098,775
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,535,461
net_rshares29,776,787,053
author_curate_reward""
vote details (1)
@thecryptofiend ·
I'm glad it helps:)
properties (22)
authorthecryptofiend
permlinkre-dashfit-re-thecryptofiend-markdown-basics-for-beginners-20161014t212016146z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 21:20:15
last_update2016-10-14 21:20:15
depth2
children0
last_payout2016-11-15 12:30: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_length19
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,535,598
net_rshares0
@daveks ·
Thank you, I just learned a few things!
👍  
properties (23)
authordaveks
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161014t204936068z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 20:49:36
last_update2016-10-14 20:49:36
depth1
children1
last_payout2016-11-15 12:30: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_length39
author_reputation2,340,408,716,294,449
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,535,383
net_rshares29,776,787,053
author_curate_reward""
vote details (1)
@thecryptofiend ·
Great.  I'm glad you found it useful:)
properties (22)
authorthecryptofiend
permlinkre-daveks-re-thecryptofiend-markdown-basics-for-beginners-20161014t211805191z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 21:18:03
last_update2016-10-14 21:18:03
depth2
children0
last_payout2016-11-15 12:30: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_length38
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,535,574
net_rshares0
@davidongo ·
$0.07
Gracias, es de mucha utilidad, no he buscado si existe esta informacion en mi idioma.
👍  ,
properties (23)
authordavidongo
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170726t195242669z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-26 19:52:42
last_update2017-07-26 19:52:42
depth1
children0
last_payout2017-08-02 19:52:42
cashout_time1969-12-31 23:59:59
total_payout_value0.068 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation9,014,577,489
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,832,620
net_rshares19,986,222,936
author_curate_reward""
vote details (2)
@davlikanov ·
Thanks a lot for a really helpfull post!
properties (22)
authordavlikanov
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180627t034718847z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-27 03:47:21
last_update2018-06-27 03:47:21
depth1
children0
last_payout2018-07-04 03:47: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_length40
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id62,429,766
net_rshares0
@dcardinal ·
$0.08
Well worth the read, thanks!
👍  , ,
properties (23)
authordcardinal
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170710t131409333z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-10 13:14:09
last_update2017-07-10 13:14:09
depth1
children0
last_payout2017-07-17 13:14:09
cashout_time1969-12-31 23:59:59
total_payout_value0.060 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation362,232,691
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,984,668
net_rshares21,803,883,553
author_curate_reward""
vote details (3)
@deepquestions ·
Thank yo so much!
properties (22)
authordeepquestions
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171120t205208870z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-20 20:52:15
last_update2017-11-20 20:52:15
depth1
children0
last_payout2017-11-27 20:52: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_length17
author_reputation22,926,002,462
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,018,341
net_rshares0
@degem2priceless ·
You managed to write all that???🤔🤔🤔🤔
properties (22)
authordegem2priceless
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180303t123223452z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-03-03 12:26:30
last_update2018-03-03 12:26:30
depth1
children0
last_payout2018-03-10 12:26: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_length36
author_reputation2,738,472,317
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,871,437
net_rshares0
@demistevens ·
Super helpful post! Thanks so much for the clear directions and excellent examples
👍  
properties (23)
authordemistevens
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180705t164037973z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-07-05 16:40:39
last_update2018-07-05 16:40:39
depth1
children1
last_payout2018-07-12 16:40: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_length82
author_reputation7,266,932
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,548,022
net_rshares465,083,656
author_curate_reward""
vote details (1)
@silabus ·
Yeah this post is so helpful for people new to steem!
properties (22)
authorsilabus
permlinkre-demistevens-re-thecryptofiend-markdown-basics-for-beginners-20180710t090840415z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-07-10 09:08:36
last_update2018-07-10 09:08:36
depth2
children0
last_payout2018-07-17 09: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_length53
author_reputation1,913,938,894
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id64,136,273
net_rshares0
@docnoc ·
Great beginner guide. Thank you for making it easy and accessible to someone who has never done any formatting or coding.
properties (22)
authordocnoc
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170802t170214524z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-02 17:02:15
last_update2017-08-02 17:02:15
depth1
children1
last_payout2017-08-09 17:02:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length121
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,557,754
net_rshares0
@thecryptofiend ·
You're welcome.  Glad you found it useful.
properties (22)
authorthecryptofiend
permlinkre-docnoc-re-thecryptofiend-markdown-basics-for-beginners-20170802t171524472z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-02 17:15:15
last_update2017-08-02 17:15:15
depth2
children0
last_payout2017-08-09 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_length42
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,558,884
net_rshares0
@dresden ·
Thanks very much for this info! I was mixing html with the markdown since the last Steemiy update but this way is going to be definetely easier and faster.
Resteeming 👍
👍  ,
properties (23)
authordresden
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161014t210320616z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 20:59:30
last_update2016-10-14 20:59:30
depth1
children3
last_payout2016-11-15 12:30: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_length168
author_reputation134,257,981,962,690
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,535,452
net_rshares34,140,528,702
author_curate_reward""
vote details (2)
@jessamynorchard ·
@dresden I've been doing the same thing. Thanks, @cryptofiend for this helpful helpfulness. The line breaks are going to be an especially big time saver for me, since I am an 100% mobile user, and those html tags don't flow as easily on my smartphone vs. computer. Thanks!
👍  ,
properties (23)
authorjessamynorchard
permlinkre-dresden-re-thecryptofiend-markdown-basics-for-beginners-20161015t041447042z
categorysteemit
json_metadata{"tags":["steemit"],"users":["dresden","cryptofiend"]}
created2016-10-15 04:14:45
last_update2016-10-15 04:14:45
depth2
children0
last_payout2016-11-15 12:30: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_length272
author_reputation64,672,452,021,015
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,537,790
net_rshares30,227,343,525
author_curate_reward""
vote details (2)
@thecryptofiend ·
I think for some things like centering text you still need to use html but for everything else this is easier.
👍  , ,
properties (23)
authorthecryptofiend
permlinkre-dresden-re-thecryptofiend-markdown-basics-for-beginners-20161014t211911618z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 21:19:12
last_update2016-10-14 21:19:12
depth2
children1
last_payout2016-11-15 12:30: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_length110
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,535,585
net_rshares9,763,351,346
author_curate_reward""
vote details (3)
@thecryptofiend · (edited)
@jessamynorchard Thanks glad you find it useful.  It is hard enough using those tags on desktop so I can only imagine how hard it is on mobile!
properties (22)
authorthecryptofiend
permlinkre-thecryptofiend-re-dresden-re-thecryptofiend-markdown-basics-for-beginners-20161015t131632961z
categorysteemit
json_metadata{"tags":["steemit"],"users":["jessamynorchard"]}
created2016-10-15 13:16:33
last_update2016-10-15 13:17:06
depth3
children0
last_payout2016-11-15 12:30: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_length143
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,540,250
net_rshares0
@drpurdy ·
maybe I missed it, but how exactly do you make the credits to other users?  I don't want to get in trouble for stealing others' work
properties (22)
authordrpurdy
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180313t050954709z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-03-13 05:09:54
last_update2018-03-13 05:09:54
depth1
children0
last_payout2018-03-20 05:09: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_length132
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,059,154
net_rshares0
@eatdrink-n-bmary ·
I'm not a tech person so I don't under all this much, but I'd like to come back to this post and try to learn more.
properties (22)
authoreatdrink-n-bmary
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180206t144241215z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-06 14:42:42
last_update2018-02-06 14:42:42
depth1
children0
last_payout2018-02-13 14:42: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_length115
author_reputation83,201,863,966
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,421,354
net_rshares0
@eazz ·
Is there a way to prevent steemit from embedding the whole video when you look YouTube?    

If tried submitting some feedback replies on videos with timestamps but the timestamp link always embeds the video in the middle of my sentences.

How do I link a video without embedding it?
properties (22)
authoreazz
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180207t221753507z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-07 22:17:57
last_update2018-02-07 22:17:57
depth1
children0
last_payout2018-02-14 22:17: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_length283
author_reputation23,993,676,216
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,762,248
net_rshares0
@englishtchrivy ·
@thecryptofiend so there's actually that. 
New thing learned thanks a great lot!
👍  
properties (23)
authorenglishtchrivy
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161014t221612186z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thecryptofiend"]}
created2016-10-14 22:16:09
last_update2016-10-14 22:16:09
depth1
children1
last_payout2016-11-15 12:30: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_length80
author_reputation190,105,027,681,254
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,536,053
net_rshares25,523,058,653
author_curate_reward""
vote details (1)
@thecryptofiend ·
Glad you like it:)
👍  
properties (23)
authorthecryptofiend
permlinkre-englishtchrivy-re-thecryptofiend-markdown-basics-for-beginners-20161014t225047317z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 22:50:45
last_update2016-10-14 22:50:45
depth2
children0
last_payout2016-11-15 12:30: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_length18
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,536,263
net_rshares7,305,514,195
author_curate_reward""
vote details (1)
@engzp ·
This is great! Thank you for such useful guide!
properties (22)
authorengzp
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171114t043815188z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-14 04:37:30
last_update2017-11-14 04:37:30
depth1
children0
last_payout2017-11-21 04: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_length47
author_reputation247,976,655,151
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,319,637
net_rshares0
@enthle ·
Thanks -
properties (22)
authorenthle
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180118t134924545z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-18 13:49:27
last_update2018-01-18 13:49:27
depth1
children0
last_payout2018-01-25 13:49: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_length8
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,398,757
net_rshares0
@ericplays ·
Great post. But I saw some people posting pics right and text left. Kind of wrapping around. It was not a table, at least it didn't look like one.
How could this be accomplished?
e.g.: https://steemit.com/eos/@belerophon/coindesk-libels-dan-larimer
properties (22)
authorericplays
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171214t050801756z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://steemit.com/eos/@belerophon/coindesk-libels-dan-larimer"],"app":"steemit/0.1"}
created2017-12-14 05:08:18
last_update2017-12-14 05:08:18
depth1
children0
last_payout2017-12-21 05:08: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_length248
author_reputation1,185,670,607
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,451,991
net_rshares0
@everittdmickey ·
You call markdown _simple_ ?
I don't even want to know what you consider complex.
That said, thank you very much, Sincerely.
I've figured out most of that.  Although I still don't understand the image thing.
👍  
properties (23)
authoreverittdmickey
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161014t203051294z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 20:30:51
last_update2016-10-14 20:30:51
depth1
children4
last_payout2016-11-15 12:30: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_length207
author_reputation237,810,557,737,590
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,535,287
net_rshares29,449,156,366
author_curate_reward""
vote details (1)
@thecryptofiend ·
It is once you get using it lol:)  What don't you understand about the image thing?
👍  
properties (23)
authorthecryptofiend
permlinkre-everittdmickey-re-thecryptofiend-markdown-basics-for-beginners-20161014t203703238z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 20:37:03
last_update2016-10-14 20:37:03
depth2
children3
last_payout2016-11-15 12:30: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_length83
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,535,315
net_rshares4,363,741,649
author_curate_reward""
vote details (1)
@everittdmickey · (edited)
dunno.  If I understood what I don't understand I'd understand it.
I don't see how this![alt text](image link here "Title text")
translates into 
this https://img1.steemit.com/0x0/https://i.imgsafe.org/12a5b86aee.png
👍  
properties (23)
authoreverittdmickey
permlinkre-thecryptofiend-re-everittdmickey-re-thecryptofiend-markdown-basics-for-beginners-20161014t204029217z
categorysteemit
json_metadata{"tags":["steemit"],"image":["https://img1.steemit.com/0x0/https://i.imgsafe.org/12a5b86aee.png"]}
created2016-10-14 20:40:30
last_update2016-10-14 20:45:51
depth3
children2
last_payout2016-11-15 12:30: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_length216
author_reputation237,810,557,737,590
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,535,335
net_rshares29,776,787,053
author_curate_reward""
vote details (1)
@everlove ·
Thanks you @thecryptofiend for this informative post.  I've ignored markdown, just keeping it basic with the editor to focus on the writing.  But, it appears that the times are a changing and the opportunity to gain new skills has arrived.  Thanks for making it more comprehensible and less intimidating.  Off on the road to new discovery!!!  UPvoted and resteemed.  I'm already following you!!
👍  
properties (23)
authoreverlove
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161015t165911535z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thecryptofiend"]}
created2016-10-15 16:59:12
last_update2016-10-15 16:59:12
depth1
children1
last_payout2016-11-15 12:30: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_reputation216,400,073,846,343
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,541,650
net_rshares25,643,311,602
author_curate_reward""
vote details (1)
@thecryptofiend ·
Thanks for your support.  I'm pleased you find it useful:)
👍  
properties (23)
authorthecryptofiend
permlinkre-everlove-re-thecryptofiend-markdown-basics-for-beginners-20161015t170430873z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 17:04:30
last_update2016-10-15 17:04:30
depth2
children0
last_payout2016-11-15 12:30: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_length58
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,541,692
net_rshares158,820,068
author_curate_reward""
vote details (1)
@eyala ·
Thank you for this post. It's helpful to see this kind of content as a beginner
👍  
properties (23)
authoreyala
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171209t092429507z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-09 09:24:30
last_update2017-12-09 09:24:30
depth1
children0
last_payout2017-12-16 09:24: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_length79
author_reputation1,010,245,501
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,864,519
net_rshares1,160,514,929
author_curate_reward""
vote details (1)
@eyeofthemind ·
So helpful. Thank you. Upvoted, I would resteem if I could but there doesn't seem to be the link.
properties (22)
authoreyeofthemind
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171016t125039034z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-10-16 12:50:39
last_update2017-10-16 12:50:39
depth1
children0
last_payout2017-10-23 12:50: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_length97
author_reputation43,213,486,374,961
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,821,427
net_rshares0
@fatman13 ·
Thanks for the post. Wondering how to set the cover image in markdown?
properties (22)
authorfatman13
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171219t070547395z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-19 07:05:48
last_update2017-12-19 07:05:48
depth1
children0
last_payout2017-12-26 07:05: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_length70
author_reputation845,786,370
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,143,007
net_rshares0
@fjmoraga ·
Very good post! I'm just getting started so it was really hepful!
properties (22)
authorfjmoraga
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180212t031815118z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-12 03:18:15
last_update2018-02-12 03:18:15
depth1
children0
last_payout2018-02-19 03:18: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_length65
author_reputation927,048,291
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,822,128
net_rshares0
@fredkese ·
**Thanks** @fredkese is new here.....hope this *helps*
properties (22)
authorfredkese
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171130t132418367z
categorysteemit
json_metadata{"tags":["steemit"],"users":["fredkese"],"app":"steemit/0.1"}
created2017-11-30 13:25:09
last_update2017-11-30 13:25:09
depth1
children0
last_payout2017-12-07 13: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_length54
author_reputation173,832,922,574,332
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,991,846
net_rshares0
@freeinthought ·
Thanks.  I needed that.  I was a bit upset that the raw html editor was taken away actually
👍  
properties (23)
authorfreeinthought
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161014t221430694z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 22:14:36
last_update2016-10-14 22:14:36
depth1
children1
last_payout2016-11-15 12:30: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_length91
author_reputation22,398,729,497,952
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,536,047
net_rshares25,523,058,653
author_curate_reward""
vote details (1)
@thecryptofiend ·
It's still there - you can use html the same as before  - you just can't switch back and forth between the text editor and html/markdown.  I still use html if I want to center an image but I find generally markdown is a lot quicker.
👍  
properties (23)
authorthecryptofiend
permlinkre-freeinthought-re-thecryptofiend-markdown-basics-for-beginners-20161014t225024072z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 22:50:24
last_update2016-10-14 22:50:24
depth2
children0
last_payout2016-11-15 12:30: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_length232
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,536,256
net_rshares3,931,446,365
author_curate_reward""
vote details (1)
@funkyprimate ·
This is the post ive been looking for to make my post look clean. Thank you so much. It's too bad steemit just can't use HTML5 and CSS3.
properties (22)
authorfunkyprimate
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170825t093225363z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-25 09:32:24
last_update2017-08-25 09:32:24
depth1
children0
last_payout2017-09-01 09:32: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_length136
author_reputation6,495,668,866
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,822,492
net_rshares0
@gadrian ·
Hey, great and informative post! I know it's been a while since it was published, but it is featured on the welcome page and maybe someone sees my comment and can help. 

I'm really new here (joined yesterday) and wanted to test the posting feature, using markdown.

I clicked on the top-right option until markdown was selected, but as soon as I typed anything in the post message body, "raw html" was selected. If I deleted whatever I typed in, "markdown" got selected once again. Was I doing something wrong? Thanks in advance!
properties (22)
authorgadrian
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180131t091636744z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-31 09:16:39
last_update2018-01-31 09:16:39
depth1
children0
last_payout2018-02-07 09:16: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_length530
author_reputation642,379,564,132,925
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,809,448
net_rshares0
@gaetane ·
Great way to get started. Thanks for the post. Just one question:
 **how do I link to a picture that is on my computer ?**
[Appreciate the successful first markdown :) ]
properties (22)
authorgaetane
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180101t163137936z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-01 16:31:33
last_update2018-01-01 16:31:33
depth1
children0
last_payout2018-01-08 16:31: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_length169
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,396,055
net_rshares0
@gatmi ·
$0.07
Thank you for helping with the preparation phase for posting. These has been really helpful. I will bookmark this page for reference. :)
👍  , , , , , , ,
properties (23)
authorgatmi
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170521t045234909z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-05-21 04:52:45
last_update2017-05-21 04:52:45
depth1
children1
last_payout2017-05-28 04:52:45
cashout_time1969-12-31 23:59:59
total_payout_value0.056 HBD
curator_payout_value0.017 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length136
author_reputation204,920,319,810
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,620,175
net_rshares44,982,891,356
author_curate_reward""
vote details (8)
@thecryptofiend ·
Glad you found it useful!
👍  , , ,
properties (23)
authorthecryptofiend
permlinkre-gatmi-re-thecryptofiend-markdown-basics-for-beginners-20170521t115249051z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-05-21 11:52:48
last_update2017-05-21 11:52:48
depth2
children0
last_payout2017-05-28 11:52: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_length25
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,627,106
net_rshares1,515,367,465
author_curate_reward""
vote details (4)
@gdiazb ·
Merci. Thank you. Gracias. It's awesome i get this just after concluding an introduction to HTML/CSS
properties (22)
authorgdiazb
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180609t225344047z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-09 22:53:54
last_update2018-06-09 22:53:54
depth1
children0
last_payout2018-06-16 22: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_length100
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id60,059,578
net_rshares0
@georgedicdiquin ·
$0.10
Thankz for the info...its very helpful for a newbie like me.
👍  , , ,
properties (23)
authorgeorgedicdiquin
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170709t014012651z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-09 01:40:15
last_update2017-07-09 01:40:15
depth1
children0
last_payout2017-07-16 01:40:15
cashout_time1969-12-31 23:59:59
total_payout_value0.076 HBD
curator_payout_value0.022 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation1,471,076,079
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,815,087
net_rshares23,469,972,355
author_curate_reward""
vote details (4)
@gerasimsimov · (edited)
Thank you!
===
___
For beginners like me it will be really helpful!
👍  
properties (23)
authorgerasimsimov
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180128t210713507z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-28 21:07:12
last_update2018-01-28 21:14:48
depth1
children0
last_payout2018-02-04 21: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_length67
author_reputation8,889,891,496
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,101,963
net_rshares494,643,199
author_curate_reward""
vote details (1)
@gold84 · (edited)
$0.76
@thecryptofriend Happy Holidays! This post is a great contribution for the steemit community, and to tell you the truth I have been learning markdowns just by action, by adding symbols just by coincidence. Its great I found it, it has for sure helped many new people here, it will certainly continue helping in the future.

Anyway, the purpose of writing you this message today is more about another great quality post you made about **keeping the Steemit Account safe, and about changing the steemit master password** . 

I wanted to give you a big shout of appreciation for this great contribution! From all the posts I researched about this topic, I considered yours the best one to explain this.




I also wanted to let you know I mentioned you in Chapter 4 of 11 of the full Steemit guide
--

 I created to help new users of steemit and new visitors, to learn as much as possible on steemit, and thus help them make their way on the platform.

Here is a part of the mention I made about you:

-----

Changing the initial (E) Master Password:

Here are instuctions I found from @thecryptofiend to change your "Master Password", that once you do it, it will change all the other 4 passwords too: https://steemit.com/steemit/@thecryptofiend/a-quick-guide-to-how-keys-passwords-work-on-steem-and-steemit

-----


I already published the first 4 chapters, and already got over 200 comments with questions and suggestions, and several needs from new visitors, minnows and new users on steemit, and other people that were already users for several months.

2 days ago, I posted **Chapter 4 of 11: Understanding How to Keep our Steemit and Steem Cryptocurrency Account Safe** - How to Use the 5 Different Passwords - This is part 4 of the 11 Chapters (Full Guide) to help new people make their way on the platform.


Here is the link to this 4th Chapter/post:
https://steemit.com/steem/@gold84/chapter-4-of-11-understanding-how-to-keep-our-steemit-and-steem-cryptocurrency-account-safe-how-to-use-the-5-different-passwords



Looking forward to hear from you with your additions, knowledge and experience in any of the Chapters!

Regards, @gold84
👍  , , , , , , , , ,
properties (23)
authorgold84
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180105t202442786z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thecryptofriend","thecryptofiend","gold84"],"links":["https://steemit.com/steemit/@thecryptofiend/a-quick-guide-to-how-keys-passwords-work-on-steem-and-steemit","https://steemit.com/steem/@gold84/chapter-4-of-11-understanding-how-to-keep-our-steemit-and-steem-cryptocurrency-account-safe-how-to-use-the-5-different-passwords"],"app":"steemit/0.1"}
created2018-01-05 20:24:42
last_update2018-01-05 20:29:09
depth1
children2
last_payout2018-01-12 20:24:42
cashout_time1969-12-31 23:59:59
total_payout_value0.579 HBD
curator_payout_value0.182 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,144
author_reputation20,903,401,478,476
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,363,370
net_rshares79,018,934,101
author_curate_reward""
vote details (10)
@ferro ·
Great article! very useful to structure my own ^_^
properties (22)
authorferro
permlinkre-gold84-re-thecryptofiend-markdown-basics-for-beginners-20180115t035414193z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-15 03:54:21
last_update2018-01-15 03:54:21
depth2
children0
last_payout2018-01-22 03:54: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_length50
author_reputation4,503,454,139
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,609,878
net_rshares0
@lonzaray ·
Thank. I'm just getting started on this platform, and your markdown explanation will help jump start my content entry.
properties (22)
authorlonzaray
permlinkre-gold84-re-thecryptofiend-markdown-basics-for-beginners-20180401t003430109z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-04-01 00:34:36
last_update2018-04-01 00:34:36
depth2
children0
last_payout2018-04-08 00:34: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_length118
author_reputation9,263,956
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,698,932
net_rshares0
@grigoryovov ·
Thank you for the great article @thecryptofiend!
properties (22)
authorgrigoryovov
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171025t052918142z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thecryptofiend"],"app":"steemit/0.1"}
created2017-10-25 05:29:21
last_update2017-10-25 05:29:21
depth1
children0
last_payout2017-11-01 05:29: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_length48
author_reputation2,810,693,324
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,504,858
net_rshares0
@groundbreaker ·
Top stuff, man. A real help. Appreciate it. Reposted so I can refer to it when I need to.
👍  
properties (23)
authorgroundbreaker
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161019t221115699z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-19 22:11:21
last_update2016-10-19 22:11:21
depth1
children1
last_payout2016-11-15 12:30: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_length89
author_reputation143,287,482,954
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,576,806
net_rshares25,550,820,959
author_curate_reward""
vote details (1)
@thecryptofiend ·
Thank you.  I'm really pleased it is helping:)
properties (22)
authorthecryptofiend
permlinkre-groundbreaker-re-thecryptofiend-markdown-basics-for-beginners-20161019t224934955z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-19 22:49:33
last_update2016-10-19 22:49:33
depth2
children0
last_payout2016-11-15 12:30: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_length46
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,577,001
net_rshares0
@handsomegorgeous ·
Thanks for the heads up! Glad to have the help of a pro.
properties (22)
authorhandsomegorgeous
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171027t175635253z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-10-27 17:56:36
last_update2017-10-27 17:56:36
depth1
children0
last_payout2017-11-03 17:56: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_length56
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,711,800
net_rshares0
@hasnainjutt ·
Extraordinary post! exceptionally educational - regardless I can't make sense of how to make a huge space between words on a similar line . Any assistance would be valued.
👍  
properties (23)
authorhasnainjutt
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171004t144611250z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-10-04 14:46:15
last_update2017-10-04 14:46:15
depth1
children1
last_payout2017-10-11 14:46: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_length171
author_reputation485,236,410
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,770,436
net_rshares1,143,175,799
author_curate_reward""
vote details (1)
@thecryptofiend ·
$0.49
I don't think there is a way yet.
👍  , ,
properties (23)
authorthecryptofiend
permlinkre-hasnainjutt-re-thecryptofiend-markdown-basics-for-beginners-20171008t140426453z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-10-08 14:04:27
last_update2017-10-08 14:04:27
depth2
children0
last_payout2017-10-15 14:04:27
cashout_time1969-12-31 23:59:59
total_payout_value0.368 HBD
curator_payout_value0.121 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,106,321
net_rshares199,698,788,741
author_curate_reward""
vote details (3)
@hazal ·
$0.11
Thank  you. As beginner, this post is very helpful.
👍  , ,
properties (23)
authorhazal
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170718t015157280z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-18 01:49:57
last_update2017-07-18 01:49:57
depth1
children0
last_payout2017-07-25 01:49:57
cashout_time1969-12-31 23:59:59
total_payout_value0.084 HBD
curator_payout_value0.026 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation379,859,611
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,828,948
net_rshares21,989,678,693
author_curate_reward""
vote details (3)
@hohum ·
Thanks..I would be fumbling in the dark if not for this. Has saved me long long time.
👍  
properties (23)
authorhohum
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171210t055220478z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-10 05:52:24
last_update2017-12-10 05:52:24
depth1
children0
last_payout2017-12-17 05:52: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_length85
author_reputation1,562,336,248
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,960,777
net_rshares1,160,514,762
author_curate_reward""
vote details (1)
@hohum ·
Steempower.org not working!!...?
properties (22)
authorhohum
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171210t055419033z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-10 05:54:21
last_update2017-12-10 05:54:21
depth1
children0
last_payout2017-12-17 05:54: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_length32
author_reputation1,562,336,248
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,960,912
net_rshares0
@honeysim ·
Wow, I love this. I am a beginner and this is very useful. Thank you very much. I have learnt how to center my heading but then everything becomes centered and I dont know how to uncenter the sections that I do not want centered. Any advice on this would be appreciated. Great job, again.
👍  ,
properties (23)
authorhoneysim
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180330t113752576z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-03-30 11:37:57
last_update2018-03-30 11:37:57
depth1
children0
last_payout2018-04-06 11:37: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_length288
author_reputation437,640,648,068
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,439,916
net_rshares0
author_curate_reward""
vote details (2)
@icalistus ·
Great post. It was really helpful @thecrytofiend
properties (22)
authoricalistus
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180305t061604070z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thecrytofiend"],"app":"steemit/0.1"}
created2018-03-05 06:16:03
last_update2018-03-05 06:16:03
depth1
children0
last_payout2018-03-12 06:16: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_length48
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id42,301,512
net_rshares0
@internetguru · (edited)
Great info thank you. This will help me have quality posts instead of plain boring text. Good examples as well. I will follow as my first!  Just used the ** x 2 in this thank you as a test and the bold works perfectly. **Thank You.**
properties (22)
authorinternetguru
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171113t024302124z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-13 02:43:03
last_update2017-11-13 02:44:06
depth1
children0
last_payout2017-11-20 02: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_length233
author_reputation5,347,348,438
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,206,427
net_rshares0
@inthecitylance ·
Thanks for the helpful post. I just made my first post recently, but I used Typora. I believe I was just in the regular editor, not the markdown editor, so my headings didn't turn out correctly. I'll follow your tips for next time.
properties (22)
authorinthecitylance
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180710t193558244z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-07-10 19:35:57
last_update2018-07-10 19:35:57
depth1
children0
last_payout2018-07-17 19:35: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_length231
author_reputation48,158,655,957
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id64,199,823
net_rshares0
@ithink ·
Thank you for your information :)
I am a new steemian and @ithink this will help me a lot
👍  
properties (23)
authorithink
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180106t171827049z
categorysteemit
json_metadata{"tags":["steemit"],"users":["ithink"],"app":"steemit/0.1"}
created2018-01-06 17:18:27
last_update2018-01-06 17:18:27
depth1
children0
last_payout2018-01-13 17:18:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation239,010,968
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,570,854
net_rshares1,160,485,946
author_curate_reward""
vote details (1)
@jahry ·
Great post, seeing how to use markdown on steemIt is very useful
properties (22)
authorjahry
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170830t085708495z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-30 08:57:09
last_update2017-08-30 08:57:09
depth1
children0
last_payout2017-09-06 08:57: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_length64
author_reputation2,656,808,877
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,319,695
net_rshares0
@jannieking ·
This is going to be revisited often.  Thank you! - brand new Steemian
properties (22)
authorjannieking
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171002t185728503z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-10-02 18:57:30
last_update2017-10-02 18:57:30
depth1
children0
last_payout2017-10-09 18:57: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_length69
author_reputation1,005,203,904
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,595,712
net_rshares0
@jcapri ·
Thank you so much for an excellent primer into "Markdown" basics. Quite helpful for newbies. Preesh!
properties (22)
authorjcapri
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170802t184624200z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-02 18:46:24
last_update2017-08-02 18:46:24
depth1
children1
last_payout2017-08-09 18:46: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_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,566,534
net_rshares0
@thecryptofiend ·
Glad you found it useful!
properties (22)
authorthecryptofiend
permlinkre-jcapri-re-thecryptofiend-markdown-basics-for-beginners-20170802t191531459z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-02 19:15:21
last_update2017-08-02 19:15:21
depth2
children0
last_payout2017-08-09 19:15: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_length25
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,568,925
net_rshares0
@jeenger ·
$0.03
Danke für die sehr ausführliche Erklärung und den hilfreichen Links.
👍  
properties (23)
authorjeenger
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171226t212433340z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-26 21:24:33
last_update2017-12-26 21:24:33
depth1
children0
last_payout2018-01-02 21:24:33
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation68,408,306,882,638
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id25,404,453
net_rshares5,450,817,385
author_curate_reward""
vote details (1)
@jiafui ·
It's so useful. Thanks!
properties (22)
authorjiafui
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171217t071935417z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-17 07:19:36
last_update2017-12-17 07:19:36
depth1
children0
last_payout2017-12-24 07:19: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_length23
author_reputation625,137,713,298
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,846,066
net_rshares0
@jigsindian ·
i m not a good writer but this post will definitely help 
now i have an confidence to be an author
properties (22)
authorjigsindian
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180626t120728196z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-26 12:07:24
last_update2018-06-26 12:07:24
depth1
children0
last_payout2018-07-03 12:07: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_length98
author_reputation2,326,222,213,761
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id62,337,457
net_rshares0
@jojijoji ·
Thank you, so much easier than html!
👍  
properties (23)
authorjojijoji
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180424t092748454z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-04-24 09:27:51
last_update2018-04-24 09:27:51
depth1
children0
last_payout2018-05-01 09:27: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_length36
author_reputation72,748,179,269
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,834,099
net_rshares0
author_curate_reward""
vote details (1)
@jonjon1 ·
Thank you for this, I really needed a bit of guidance with this stuff so cheers.
👍  
properties (23)
authorjonjon1
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161015t225607934z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 22:56:09
last_update2016-10-15 22:56:09
depth1
children1
last_payout2016-11-15 12:30: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_length80
author_reputation17,527,662,487,998
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,544,133
net_rshares30,162,257,452
author_curate_reward""
vote details (1)
@thecryptofiend ·
You're welcome.  I'm glad you found it useful:)
properties (22)
authorthecryptofiend
permlinkre-jonjon1-re-thecryptofiend-markdown-basics-for-beginners-20161015t233703045z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 23:37:03
last_update2016-10-15 23:37:03
depth2
children0
last_payout2016-11-15 12:30: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_length47
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,544,387
net_rshares0
@jorlauski ·
$1.10
Great post! very informative -  I still can't figure out how to make a  large space between words on the same line . Any help would be appreciated.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorjorlauski
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170826t085735475z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-26 08:58:12
last_update2017-08-26 08:58:12
depth1
children13
last_payout2017-09-02 08:58:12
cashout_time1969-12-31 23:59:59
total_payout_value0.825 HBD
curator_payout_value0.273 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation5,148,851,596,910
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,916,385
net_rshares273,120,687,886
author_curate_reward""
vote details (38)
@azeemsaddiqi ·
Can you please tell me that how can i get paid and if I want to replace this money with cash how can i do that .......please answer this
👍  , , ,
properties (23)
authorazeemsaddiqi
permlinkre-jorlauski-re-thecryptofiend-markdown-basics-for-beginners-20171004t095635548z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-10-04 09:56:45
last_update2017-10-04 09:56:45
depth2
children1
last_payout2017-10-11 09:56: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_length136
author_reputation18,134,130
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,748,886
net_rshares1,160,584,327
author_curate_reward""
vote details (4)
@jorlauski ·
not sure I understand the question - Steemit will automatically pay you every 7 days from the time you made a post - once that happens you can get your money "powering down" which is what they call it when you want to convert your steem - there are lots of posts and videos  that go into more detail. I'm not sure exactly how to do it since I've never cashed out- I'm trying to convert all of my steem to steempower. Best of luck to you.
👍  , , , , , , ,
properties (23)
authorjorlauski
permlinkre-azeemsaddiqi-re-jorlauski-re-thecryptofiend-markdown-basics-for-beginners-20171005t165607452z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-10-05 16:56:06
last_update2017-10-05 16:56:06
depth3
children0
last_payout2017-10-12 16:56: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_length437
author_reputation5,148,851,596,910
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,875,045
net_rshares0
author_curate_reward""
vote details (8)
@phaqlow ·
Kinda late but you can write "\&nbsp;"
👍  , ,
properties (23)
authorphaqlow
permlinkre-jorlauski-re-thecryptofiend-markdown-basics-for-beginners-20180118t083925271z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-18 08:39:27
last_update2018-01-18 08:39:27
depth2
children5
last_payout2018-01-25 08:39: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_length38
author_reputation9,607,187
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,348,450
net_rshares0
author_curate_reward""
vote details (3)
@jorlauski ·
thanks - i  use "& nbsp;" quite regularly - its good for making a new paragraph ... but if i want to make a space on the same line.. I should be able to use the space bar like in Word.... but no matter how manny spacs I put in ... steemit markdown defaults to ONE  space... si I'm back to where I started and I never found a good answer to my question - so if anyone knows .. I would totally appreciate it.
properties (22)
authorjorlauski
permlinkre-phaqlow-re-jorlauski-re-thecryptofiend-markdown-basics-for-beginners-20180118t174231491z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-18 17:42:33
last_update2018-01-18 17:42:33
depth3
children4
last_payout2018-01-25 17:42: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_length406
author_reputation5,148,851,596,910
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,444,835
net_rshares0
@thecryptofiend ·
You just have to use multiple spaces I think.
👍  , , , , , , , ,
properties (23)
authorthecryptofiend
permlinkre-jorlauski-re-thecryptofiend-markdown-basics-for-beginners-20170826t123131259z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-26 12:31:30
last_update2017-08-26 12:31:30
depth2
children4
last_payout2017-09-02 12:31: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_length45
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,929,986
net_rshares0
author_curate_reward""
vote details (9)
@jorlauski ·
Thanks.. but I've tried that and it only moved it over one space... back to square one
👍  , , , ,
properties (23)
authorjorlauski
permlinkre-thecryptofiend-re-jorlauski-re-thecryptofiend-markdown-basics-for-beginners-20170827t101914752z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-27 10:19:33
last_update2017-08-27 10:19:33
depth3
children3
last_payout2017-09-03 10:19: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_length86
author_reputation5,148,851,596,910
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,012,737
net_rshares0
author_curate_reward""
vote details (5)
@jorlauski ·
## thanks to everyone for your help - 

I wnert back and tried the & n b sp ;  in the middle of the line and it worked - for some reason , I thought it was only for breaking space to a new paragraph....i never know it could make a space in a line - how cray is that? I've written entire websites in HTML without know that! thaks again to everyone
properties (22)
authorjorlauski
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180118t174901968z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-18 17:49:03
last_update2018-01-18 17:49:03
depth1
children0
last_payout2018-01-25 17:49: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_length346
author_reputation5,148,851,596,910
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,446,042
net_rshares0
@joselyn-ism ·
I found this post very helpful! Thank you for  sharing!
properties (22)
authorjoselyn-ism
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180212t062721560z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-12 06:27:21
last_update2018-02-12 06:27:21
depth1
children0
last_payout2018-02-19 06:27: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_length55
author_reputation4,002,128,633
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,856,294
net_rshares0
@joshuanaabu ·
Very helpful.
properties (22)
authorjoshuanaabu
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180120t155448132z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-20 15:54:57
last_update2018-01-20 15:54:57
depth1
children0
last_payout2018-01-27 15:54: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_length13
author_reputation55,231,600,807
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,893,396
net_rshares0
@justjay ·
Thanks for this tutorial, much appreciated.
Thanks to you my first post doesn't look like a complete trainwreck but somewhat esthetic :D
Do you happen to know if it's possible to alter the size of an uploaded image?
properties (22)
authorjustjay
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180111t172833790z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-11 17:28:33
last_update2018-01-11 17:28:33
depth1
children0
last_payout2018-01-18 17:28: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_length215
author_reputation4,158,295,473
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,806,026
net_rshares0
@juv79505 ·
Thank you for this post! Very helpful! I am resteeming it!
properties (22)
authorjuv79505
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171227t004522720z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-27 00:45:24
last_update2017-12-27 00:45:24
depth1
children0
last_payout2018-01-03 00: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_length58
author_reputation572,899,102,114
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id25,426,682
net_rshares0
@kaizokush ·
$0.27
Very helpful. Will follow while creating my first post. :)
👍  , , ,
properties (23)
authorkaizokush
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170624t153955474z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-24 15:39:57
last_update2017-06-24 15:39:57
depth1
children1
last_payout2017-07-01 15:39:57
cashout_time1969-12-31 23:59:59
total_payout_value0.206 HBD
curator_payout_value0.063 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation9,923,295,592
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,923,632
net_rshares23,781,562,218
author_curate_reward""
vote details (4)
@thecryptofiend ·
Cool thank you!
👍  
properties (23)
authorthecryptofiend
permlinkre-kaizokush-re-thecryptofiend-markdown-basics-for-beginners-20170624t162618855z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-24 16:26:18
last_update2017-06-24 16:26:18
depth2
children0
last_payout2017-07-01 16:26: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_length15
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,928,938
net_rshares0
author_curate_reward""
vote details (1)
@kalachuchi ·
$0.04
thanks for the tips. takes a bit of getting used to this :)
👍  , , , , ,
properties (23)
authorkalachuchi
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170620t134841932z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-20 13:48:42
last_update2017-06-20 13:48:42
depth1
children1
last_payout2017-06-27 13:48:42
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation513,331,995
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,351,774
net_rshares2,345,708,481
author_curate_reward""
vote details (6)
@thecryptofiend ·
You're welcome!
👍  , ,
properties (23)
authorthecryptofiend
permlinkre-kalachuchi-re-thecryptofiend-markdown-basics-for-beginners-20170620t151509758z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-20 15:15:09
last_update2017-06-20 15:15:09
depth2
children0
last_payout2017-06-27 15:15: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_length15
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,359,178
net_rshares0
author_curate_reward""
vote details (3)
@kaminchan ·
$0.10
Thank you very much! Very helpful to a slow beginner like me.  I upvoted and follow your amazingly varied outputs!
👍  ,
properties (23)
authorkaminchan
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170707t104949943z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-07 10:50:03
last_update2017-07-07 10:50:03
depth1
children0
last_payout2017-07-14 10:50:03
cashout_time1969-12-31 23:59:59
total_payout_value0.074 HBD
curator_payout_value0.023 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation551,433,449,481,874
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,629,130
net_rshares21,275,403,236
author_curate_reward""
vote details (2)
@karenb54 ·
Very helpful thank you and I got to the beautiful kittens, :)
👍  , ,
properties (23)
authorkarenb54
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161014t203140781z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 20:31:51
last_update2016-10-14 20:31:51
depth1
children1
last_payout2016-11-15 12:30: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_length61
author_reputation710,248,469,948,701
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,535,291
net_rshares36,068,582,314
author_curate_reward""
vote details (3)
@thecryptofiend ·
Thanks:)
properties (22)
authorthecryptofiend
permlinkre-karenb54-re-thecryptofiend-markdown-basics-for-beginners-20161014t203724337z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 20:37:24
last_update2016-10-14 20:37:24
depth2
children0
last_payout2016-11-15 12:30: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_length8
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,535,317
net_rshares0
@katilicous ·
Thanks for  the article!
properties (22)
authorkatilicous
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180223t055055682z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-23 05:50:57
last_update2018-02-23 05:50:57
depth1
children0
last_payout2018-03-02 05:50: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_length24
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,784,460
net_rshares0
@kayshava ·
Thanks for this super useful post...just what a beginner like me needs!
properties (22)
authorkayshava
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171112t015810820z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-12 01:58:12
last_update2017-11-12 01:58:12
depth1
children0
last_payout2017-11-19 01: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_length71
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,104,040
net_rshares0
@khalilthecat ·
Is there a way I can edit my posts after posting?
properties (22)
authorkhalilthecat
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180208t080154137z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-08 08:02:00
last_update2018-02-08 08:02:00
depth1
children0
last_payout2018-02-15 08: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_length49
author_reputation3,546,883,823
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,861,160
net_rshares0
@khanfu ·
$0.10
Yaaaaaaaaaas!!! This was of great help! Cheers
👍  ,
properties (23)
authorkhanfu
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170706t164722989z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-06 15:48:45
last_update2017-07-06 15:48:45
depth1
children0
last_payout2017-07-13 15:48:45
cashout_time1969-12-31 23:59:59
total_payout_value0.100 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation10,898,158,347
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,535,278
net_rshares21,272,057,322
author_curate_reward""
vote details (2)
@kharma.scribbles ·
How is it that you were able to start a paragraph in a line right below a heading? My formatting keeps making a hardbreak (empty line) under my headings no matter what I do  :(
properties (22)
authorkharma.scribbles
permlinkre-thecryptofiend-markdown-basics-for-beginners-20190122t235809615z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2019-01-22 23:58:15
last_update2019-01-22 23:58:15
depth1
children0
last_payout2019-01-29 23:58: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_length176
author_reputation4,988,835,934,532
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,787,527
net_rshares0
@kiddarko ·
I just got 2 more content creators to join. I will link this post to them. Good post, Thanks.
👍  
properties (23)
authorkiddarko
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161015t005307846z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 00:53:09
last_update2016-10-15 00:53:09
depth1
children1
last_payout2016-11-15 12:30: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_length93
author_reputation68,976,091,570,895
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,536,886
net_rshares25,523,086,740
author_curate_reward""
vote details (1)
@thecryptofiend ·
Thank you for your efforts for Steemit.  Glad you are finding this useful too:)
👍  
properties (23)
authorthecryptofiend
permlinkre-kiddarko-re-thecryptofiend-markdown-basics-for-beginners-20161015t005605741z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 00:56:06
last_update2016-10-15 00:56:06
depth2
children0
last_payout2016-11-15 12:30: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_length79
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,536,897
net_rshares0
author_curate_reward""
vote details (1)
@ladyartist ·
From a true newbie, thank you for your informative content.  I am also interested in photography, polymer clay, and cryptocurrency as my boyfriend has been mining for a long time.
properties (22)
authorladyartist
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180211t142111914z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-11 14:21:12
last_update2018-02-11 14:21:12
depth1
children0
last_payout2018-02-18 14:21: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_length179
author_reputation1,350,156,924
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,682,154
net_rshares0
@lancyboi ·
Thank you. These are very helpful!
properties (22)
authorlancyboi
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180918t185410252z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-09-18 18:54:09
last_update2018-09-18 18:54:09
depth1
children0
last_payout2018-09-25 18:54: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_length34
author_reputation29,291,390,008
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,609,051
net_rshares0
@lasal ·
Very useful !!!
properties (22)
authorlasal
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180112t110553368z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-12 11:05:54
last_update2018-01-12 11:05:54
depth1
children0
last_payout2018-01-19 11:05: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_length15
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,978,327
net_rshares0
@lazaronn ·
I found some of it helpful but still struggling, I have mental problems so don't judge me too harshly.
properties (22)
authorlazaronn
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171201t013324899z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-01 01:33:30
last_update2017-12-01 01:33:30
depth1
children0
last_payout2017-12-08 01:33: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_length102
author_reputation2,082,043,575
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,046,861
net_rshares0
@letusshare ·
Good Work :)
properties (22)
authorletusshare
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170801t063640953z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-01 06:36:42
last_update2017-08-01 06:36:42
depth1
children1
last_payout2017-08-08 06:36: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_length12
author_reputation54,005,269
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,392,062
net_rshares0
@thecryptofiend ·
Thank you:)
properties (22)
authorthecryptofiend
permlinkre-letusshare-re-thecryptofiend-markdown-basics-for-beginners-20170801t103518241z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-01 10:35:12
last_update2017-08-01 10:35:12
depth2
children0
last_payout2017-08-08 10:35: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_length11
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,408,390
net_rshares0
@linkback-bot-v0 ·
This post has been linked to from another place on Steem.


  - [Advanced Steem Metrics Report for 14th October 2016](https://steemit.com/stats/@ontofractal/advanced-steem-metrics-report-for-14th-october-2016) by @ontofractal


Learn more about [**linkback bot v0.4**](https://steemit.com/steem/@ontofractal/steem-linkback-bot-v0-4-released). Upvote if you want the bot to continue posting linkbacks for your posts. Flag if otherwise.

Built by @ontofractal
👍  
properties (23)
authorlinkback-bot-v0
permlinkre-thecryptofiend-markdown-basics-for-beginners-linkbacks
categorysteemit
json_metadata{}
created2016-10-15 18:50:15
last_update2016-10-15 18:50:15
depth1
children1
last_payout2016-11-15 12:30: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_length458
author_reputation1,915,954,976,722
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,542,350
net_rshares30,161,113,756
author_curate_reward""
vote details (1)
@thecryptofiend ·
Thank you:)
properties (22)
authorthecryptofiend
permlinkre-linkback-bot-v0-re-thecryptofiend-markdown-basics-for-beginners-linkbacks-20161015t200454738z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 20:04:54
last_update2016-10-15 20:04:54
depth2
children0
last_payout2016-11-15 12:30: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_length11
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,542,983
net_rshares0
@lookup354 ·
great blog, really a big help for newbie like me, thanks :)
👍  
properties (23)
authorlookup354
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161017t180517866z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-17 18:06:48
last_update2016-10-17 18:06:48
depth1
children1
last_payout2016-11-15 12:30: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_reputation2,068,302,209
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,557,734
net_rshares26,251,763,010
author_curate_reward""
vote details (1)
@thecryptofiend ·
Thank you.  I'm happy you found it useful.  Let me know if there is anything else you would like me to cover:)
properties (22)
authorthecryptofiend
permlinkre-lookup354-re-thecryptofiend-markdown-basics-for-beginners-20161017t192532406z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-17 19:25:33
last_update2016-10-17 19:25:33
depth2
children0
last_payout2016-11-15 12:30: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_length110
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,558,390
net_rshares0
@lordlee ·
Wow, nice post! I learned a much and it will hopefully help me to write better Posts.
properties (22)
authorlordlee
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180119t220539952z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-19 22:05:39
last_update2018-01-19 22:05:39
depth1
children0
last_payout2018-01-26 22:05: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_length85
author_reputation82,761,761
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,720,241
net_rshares0
@luisfervzla ·
Excelente acabo de entrar en Steemit y este post me sera muy útil. Muchas Gracias
properties (22)
authorluisfervzla
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171019t113103237z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-10-19 11:31:09
last_update2017-10-19 11:31:09
depth1
children0
last_payout2017-10-26 11:31: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_length81
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,047,623
net_rshares0
@ma8trix ·
$0.40
Thank you, very helpful!
👍  ,
properties (23)
authorma8trix
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171228t135554282z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-28 13:55:42
last_update2017-12-28 13:55:42
depth1
children0
last_payout2018-01-04 13:55:42
cashout_time1969-12-31 23:59:59
total_payout_value0.401 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation299,244,601,106
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id25,692,673
net_rshares33,758,419,023
author_curate_reward""
vote details (2)
@mahmoud-shafik ·
This was literally the first post I read here and it was extremely helpful thank you so much
properties (22)
authormahmoud-shafik
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171228t161843245z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-28 16:18:48
last_update2017-12-28 16:18:48
depth1
children0
last_payout2018-01-04 16:18: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_length92
author_reputation83,839,554,018
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id25,715,728
net_rshares0
@makrotheblack ·
$0.18
Thanks for  those really useful tips.  
I'm new to steemit and have never used mark down before,so I really appreciate all the time and effort you have put into it,in my opion a "must read " for beginers. (I'm going to practice mark down now)
👍  , , , , , ,
properties (23)
authormakrotheblack
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170701t101904873z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-01 10:19:06
last_update2017-07-01 10:19:06
depth1
children0
last_payout2017-07-08 10:19:06
cashout_time1969-12-31 23:59:59
total_payout_value0.136 HBD
curator_payout_value0.043 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length242
author_reputation319,818,388,314
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,873,235
net_rshares21,530,145,168
author_curate_reward""
vote details (7)
@maninmeanders ·
Hi @thecryptofiend, this is a big help to a newbie like me. Thanks much!
properties (22)
authormaninmeanders
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180319t051244064z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thecryptofiend"],"app":"steemit/0.1"}
created2018-03-19 05:12:18
last_update2018-03-19 05:12:18
depth1
children0
last_payout2018-03-26 05:12: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_length72
author_reputation30,732,990,892
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,270,592
net_rshares0
@maryahoc ·
Thank you soo much for the post for teaching all the basics to write a good content.....this post is really really helpful for the beginning like me......thank you again
👍  ,
properties (23)
authormaryahoc
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180217t124908610z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-17 12:49:15
last_update2018-02-17 12:49:15
depth1
children0
last_payout2018-02-24 12:49: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_length169
author_reputation119,489,472,512
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,249,998
net_rshares2,279,574,381
author_curate_reward""
vote details (2)
@marynetta ·
Oh! I did my first post 2 days ago and had few stupid question. This article explains everything with all necessary details.  Thank you!
👍  
properties (23)
authormarynetta
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161014t221825094z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 22:18:27
last_update2016-10-14 22:18:27
depth1
children1
last_payout2016-11-15 12:30: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_length136
author_reputation140,596,382,201
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,536,069
net_rshares25,523,058,653
author_curate_reward""
vote details (1)
@thecryptofiend ·
Thanks glad it is useful for you:)
properties (22)
authorthecryptofiend
permlinkre-marynetta-re-thecryptofiend-markdown-basics-for-beginners-20161014t225113425z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 22:51:12
last_update2016-10-14 22:51:12
depth2
children0
last_payout2016-11-15 12:30: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_length34
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,536,266
net_rshares0
@masterchief117 ·
Nice one! Might have to read it one or two more to understand it all! ;-) I´m totally new here, anyone got any suggestions where or how to start?? Thanks for the post!!
properties (22)
authormasterchief117
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170901t143505936z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-09-01 14:35:06
last_update2017-09-01 14:35:06
depth1
children1
last_payout2017-09-08 14:35: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_length168
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,557,965
net_rshares0
@thecryptofiend ·
Use the Steemithelp link at the end of the post.
properties (22)
authorthecryptofiend
permlinkre-masterchief117-re-thecryptofiend-markdown-basics-for-beginners-20170901t143734969z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-09-01 14:37:36
last_update2017-09-01 14:37:36
depth2
children0
last_payout2017-09-08 14:37: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_length48
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,558,195
net_rshares0
@melissajarquin ·
By far the best tutorial out there- I have this bookmarked have referenced it so many times! Thank you!
properties (22)
authormelissajarquin
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180322t191257841z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-03-22 19:12:57
last_update2018-03-22 19:12:57
depth1
children0
last_payout2018-03-29 19:12: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_length103
author_reputation154,953,424,748
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,007,377
net_rshares0
@michelleh82 ·
Great post !
👍  ,
properties (23)
authormichelleh82
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161015t031337001z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 03:13:36
last_update2016-10-15 03:13:36
depth1
children1
last_payout2016-11-15 12:30: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_length12
author_reputation11,260,386,730,882
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,537,506
net_rshares29,780,100,568
author_curate_reward""
vote details (2)
@thecryptofiend ·
Thank you:)
👍  
properties (23)
authorthecryptofiend
permlinkre-michelleh82-re-thecryptofiend-markdown-basics-for-beginners-20161015t130250483z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 13:02:48
last_update2016-10-15 13:02:48
depth2
children0
last_payout2016-11-15 12:30: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_length11
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,540,153
net_rshares0
author_curate_reward""
vote details (1)
@midnightviola ·
Thanks for the useful information!🙂
properties (22)
authormidnightviola
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170915t005719475z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-09-15 00:57:21
last_update2017-09-15 00:57:21
depth1
children0
last_payout2017-09-22 00:57: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_length35
author_reputation649,971,661,851
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,917,130
net_rshares0
@mohyeh ·
I think Markdown miss text alignment and photos too, Is that right?
properties (22)
authormohyeh
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170630t155436433z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-30 15:54:39
last_update2017-06-30 15:54:39
depth1
children2
last_payout2017-07-07 15:54: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_reputation4,155,142,440
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,777,288
net_rshares0
@leponyanasd ·
&lt;center&gt;xxx&lt;/center&gt;
<center>xxx</center>
👍  
properties (23)
authorleponyanasd
permlinkre-mohyeh-re-thecryptofiend-markdown-basics-for-beginners-20170825t105945196z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-25 10:59:42
last_update2017-08-25 10:59:42
depth2
children0
last_payout2017-09-01 10: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_length53
author_reputation3,166,924,882
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,828,469
net_rshares0
author_curate_reward""
vote details (1)
@thecryptofiend ·
I don't understand the question.
properties (22)
authorthecryptofiend
permlinkre-mohyeh-re-thecryptofiend-markdown-basics-for-beginners-20170630t160935701z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-30 16:09:36
last_update2017-06-30 16:09:36
depth2
children0
last_payout2017-07-07 16:09: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_length32
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,778,823
net_rshares0
@mysixtypluslife ·
$0.18
Thank you so much for this, I have bookmarked and will be returning.
👍  , ,
properties (23)
authormysixtypluslife
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170701t061641671z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-01 06:16:42
last_update2017-07-01 06:16:42
depth1
children1
last_payout2017-07-08 06:16:42
cashout_time1969-12-31 23:59:59
total_payout_value0.134 HBD
curator_payout_value0.043 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation39,470,087,721
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,855,111
net_rshares21,060,890,046
author_curate_reward""
vote details (3)
@mraza ·
please up vote
properties (22)
authormraza
permlinkre-mysixtypluslife-re-thecryptofiend-markdown-basics-for-beginners-20180104t054643791z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-04 05:46:45
last_update2018-01-04 05:46:45
depth2
children0
last_payout2018-01-11 05: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_length14
author_reputation82,268,035,739
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,953,646
net_rshares0
@nathanhearns ·
Thank you for sharing..! Being new to Steemit, this is very helpful for me to actually do an intro post now...!
properties (22)
authornathanhearns
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170810t233144943z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-10 23:31:45
last_update2017-08-10 23:31:45
depth1
children1
last_payout2017-08-17 23:31: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_length111
author_reputation1,113,379,343
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,446,463
net_rshares0
@thecryptofiend ·
You're welcome!
properties (22)
authorthecryptofiend
permlinkre-nathanhearns-re-thecryptofiend-markdown-basics-for-beginners-20170810t234855549z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-10 23:48:51
last_update2017-08-10 23:48:51
depth2
children0
last_payout2017-08-17 23:48: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_length15
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,447,542
net_rshares0
@natureofbeing ·
this is still intimidating simply because it seems so time consuming. I will try it out fully though at some point and am grateful for your detailed instructions that will guide me through!
👍  ,
properties (23)
authornatureofbeing
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161015t013535079z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 01:35:33
last_update2016-10-15 01:35:33
depth1
children1
last_payout2016-11-15 12:30: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_length189
author_reputation99,245,337,512,310
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,537,072
net_rshares25,525,337,630
author_curate_reward""
vote details (2)
@thecryptofiend ·
Yes it can seem that way but once you start doing it you will pick it up very quickly and it is a lot faster than using html tags.
👍  
properties (23)
authorthecryptofiend
permlinkre-natureofbeing-re-thecryptofiend-markdown-basics-for-beginners-20161015t022957738z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 02:29:57
last_update2016-10-15 02:29:57
depth2
children0
last_payout2016-11-15 12:30: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_length130
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,537,328
net_rshares0
author_curate_reward""
vote details (1)
@ndg1pu ·
thanks, i will try it,
properties (22)
authorndg1pu
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180707t084650882z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-07-07 08:46:36
last_update2018-07-07 08:46:36
depth1
children0
last_payout2018-07-14 08:46: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_length22
author_reputation-11,588,377,223
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,755,989
net_rshares0
@neerajmotivation ·
This was just the kind of information that I was looking for as a newbie to this system.  I wrote my first post yesterday and was thinking about where they have given the options for formatting a text. This is a very informative and useful article. Thanks!
properties (22)
authorneerajmotivation
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180611t060059274z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-11 05:57:21
last_update2018-06-11 05:57:21
depth1
children0
last_payout2018-06-18 05:57: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_length256
author_reputation49,787,746,465
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id60,246,694
net_rshares0
@nergal09 ·
Thank you for your time writing this wonderful post. Do you know if it works with mobile site?
properties (22)
authornergal09
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180607t031849292z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-07 03:19:03
last_update2018-06-07 03:19:03
depth1
children0
last_payout2018-06-14 03:19: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_length94
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,624,973
net_rshares0
@netcynergy ·
I found the Markdown Editor link Steempower.org to NOT work - could be me or my machine.
properties (22)
authornetcynergy
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180120t025651495z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-20 02:57:00
last_update2018-01-20 02:57:00
depth1
children0
last_payout2018-01-27 02:57: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_length88
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,765,151
net_rshares0
@nexusvortex777 ·
This is vital information for those of us who are in our beginning stages of creating quality content on Steemit. I have been searching for ways to make my content gain a better appearance through proper formatting and possibly help others. I am resteeming your article because I find the information you provide exceptionally useful for anyone who wants to improve their content! Thanks so much!
properties (22)
authornexusvortex777
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180101t044543444z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-01 04:45:57
last_update2018-01-01 04:45:57
depth1
children0
last_payout2018-01-08 04:45: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_length396
author_reputation663,634,027,075
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,313,926
net_rshares0
@ninjasly ·
cheers mate for the quick friendly explanation to writing an artcle, blog etc as I am usually fairly anti-social regarding this social media concept until I came across steem . Usually I find so many platforms have so much crap to sift thru to find interesting matter to respond to or to express  in until the discovery of steemit and now it will make expression of a opinion to post much easier, thank you
properties (22)
authorninjasly
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170827t073254401z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-27 07:33:00
last_update2017-08-27 07:33:00
depth1
children1
last_payout2017-09-03 07:33: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_length406
author_reputation4,285,694,885
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,002,896
net_rshares0
@thecryptofiend ·
You're welcome:)
properties (22)
authorthecryptofiend
permlinkre-ninjasly-re-thecryptofiend-markdown-basics-for-beginners-20170827t120514272z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-27 12:05:12
last_update2017-08-27 12:05:12
depth2
children0
last_payout2017-09-03 12:05: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_length16
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,019,361
net_rshares0
@noniqueen ·
I just found how to upvote. __Thank you__ for being started. Your posting encouraged me to begin. :) __
properties (22)
authornoniqueen
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180421t103629767z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-04-21 10:36:33
last_update2018-04-21 10:36:33
depth1
children1
last_payout2018-04-28 10:36: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_length103
author_reputation1,149,705,350
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,285,072
net_rshares0
@noniqueen ·
WOW! the bold worked. feels like "hello world."
properties (22)
authornoniqueen
permlinkre-noniqueen-re-thecryptofiend-markdown-basics-for-beginners-20180421t103750651z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-04-21 10:37:54
last_update2018-04-21 10:37:54
depth2
children0
last_payout2018-04-28 10:37: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_length47
author_reputation1,149,705,350
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,285,248
net_rshares0
@nonz ·
Thank you _very_ much. As a newbie this was insightful.
properties (22)
authornonz
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180509t230725726z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-05-09 23:07:36
last_update2018-05-09 23:07:36
depth1
children0
last_payout2018-05-16 23:07: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_length55
author_reputation94,181,199,522
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,839,966
net_rshares0
@novis ·
$0.51
properties (23)
authornovis
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170617t221843980z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-17 22:18:45
last_update2017-06-17 22:18:45
depth1
children1
last_payout2017-06-24 22:18:45
cashout_time1969-12-31 23:59:59
total_payout_value0.392 HBD
curator_payout_value0.122 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation15,712,892,193
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,128,803
net_rshares24,994,183,525
author_curate_reward""
vote details (9)
@thecryptofiend ·
$0.02
You're welcome:)
👍  , , ,
properties (23)
authorthecryptofiend
permlinkre-novis-re-thecryptofiend-markdown-basics-for-beginners-20170617t225343490z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-17 22:53:45
last_update2017-06-17 22:53:45
depth2
children0
last_payout2017-06-24 22:53:45
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,130,919
net_rshares1,305,787,842
author_curate_reward""
vote details (4)
@nowsmon ·
很好的文章,非常实用,新手必读!goooood!
properties (22)
authornowsmon
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171029t061711154z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-10-29 06:17:09
last_update2017-10-29 06:17:09
depth1
children0
last_payout2017-11-05 06:17: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_length24
author_reputation8,931,412,482
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,846,570
net_rshares0
@odveri ·
Very helpful for the beginners at steemit
👍  
properties (23)
authorodveri
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171031t073627471z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-10-31 07:36:36
last_update2017-10-31 07:36:36
depth1
children0
last_payout2017-11-07 07:36: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_length41
author_reputation4,791,340,539
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,047,557
net_rshares1,143,147,643
author_curate_reward""
vote details (1)
@ofir ·
Thanks for this post! Helps many newbies like me  :)
👍  
properties (23)
authorofir
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180110t143431357z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-10 14:34:36
last_update2018-01-10 14:34:36
depth1
children0
last_payout2018-01-17 14:34: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_length52
author_reputation18,132,533
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,512,586
net_rshares1,160,482,130
author_curate_reward""
vote details (1)
@oldarado ·
Thanks for helping
properties (22)
authoroldarado
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170818t193450950z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-18 19:34:51
last_update2017-08-18 19:34:51
depth1
children1
last_payout2017-08-25 19:34: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_length18
author_reputation351,746,458,004
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,203,103
net_rshares0
@thecryptofiend ·
You're welcome:)
properties (22)
authorthecryptofiend
permlinkre-oldarado-re-thecryptofiend-markdown-basics-for-beginners-20170818t222504055z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-18 22:24:42
last_update2017-08-18 22:24:42
depth2
children0
last_payout2017-08-25 22:24: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_length16
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,213,810
net_rshares0
@onetree ·
Useful,  thank you!
👍  
properties (23)
authoronetree
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161014t222828142z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 22:28:36
last_update2016-10-14 22:28:36
depth1
children1
last_payout2016-11-15 12:30: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_length19
author_reputation73,830,922,241,007
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,536,125
net_rshares25,523,058,653
author_curate_reward""
vote details (1)
@thecryptofiend ·
Thanks for reading.  I'm glad it's useful.
properties (22)
authorthecryptofiend
permlinkre-onetree-re-thecryptofiend-markdown-basics-for-beginners-20161014t230641836z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 23:06:42
last_update2016-10-14 23:06:42
depth2
children0
last_payout2016-11-15 12:30: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_length42
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,536,338
net_rshares0
@onurjones ·
Such helpful post, thanks!
properties (22)
authoronurjones
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180626t203830777z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-26 20:38:30
last_update2018-06-26 20:38:30
depth1
children0
last_payout2018-07-03 20: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_length26
author_reputation69,740,284,540
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id62,395,031
net_rshares0
@openparadigm ·
Steem is so fun! Thank you for the post!
properties (22)
authoropenparadigm
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170621t025114717z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-21 02:51:15
last_update2017-06-21 02:51:15
depth1
children1
last_payout2017-06-28 02:51: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_length40
author_reputation4,229,783,120,987
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,444,110
net_rshares0
@thecryptofiend ·
You're welcome!
properties (22)
authorthecryptofiend
permlinkre-openparadigm-re-thecryptofiend-markdown-basics-for-beginners-20170621t112438181z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-21 11:24:39
last_update2017-06-21 11:24:39
depth2
children0
last_payout2017-06-28 11:24: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_length15
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,485,435
net_rshares0
@orionsbelt ·
$0.77
properties (23)
authororionsbelt
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170616t182327596z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-16 18:23:30
last_update2017-06-16 18:23:30
depth1
children2
last_payout2017-06-23 18:23:30
cashout_time1969-12-31 23:59:59
total_payout_value0.752 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation679,401,428,823
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,030,943
net_rshares35,590,789,841
author_curate_reward""
vote details (11)
@saikrishna ·
Yeah.. Me too
👍  ,
properties (23)
authorsaikrishna
permlinkre-orionsbelt-re-thecryptofiend-markdown-basics-for-beginners-20170627t113617059z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-27 11:36:24
last_update2017-06-27 11:36:24
depth2
children0
last_payout2017-07-04 11:36: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_length13
author_reputation358,960,542
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,317,277
net_rshares0
author_curate_reward""
vote details (2)
@thecryptofiend ·
$0.02
Glad it is useful for you.
👍  , , , , ,
properties (23)
authorthecryptofiend
permlinkre-orionsbelt-re-thecryptofiend-markdown-basics-for-beginners-20170616t182624400z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-16 18:26:24
last_update2017-06-16 18:26:24
depth2
children0
last_payout2017-06-23 18:26:24
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,031,153
net_rshares1,079,450,575
author_curate_reward""
vote details (6)
@ororo5 ·
I have learn a lot from this article, i will try it. This is the first time i am hearing of Markdown.
properties (22)
authorororo5
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171206t153114505z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-06 15:31:21
last_update2017-12-06 15:31:21
depth1
children0
last_payout2017-12-13 15:31: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_length101
author_reputation276,311,043
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,576,125
net_rshares0
@papa-pepper ·
Another excellent post @thecryptofiend!

I really learned something today!
👍  ,
properties (23)
authorpapa-pepper
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161015t035755544z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thecryptofiend"]}
created2016-10-15 03:57:57
last_update2016-10-15 03:57:57
depth1
children4
last_payout2016-11-15 12:30: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_length74
author_reputation1,951,223,832,091,597
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,537,679
net_rshares29,780,111,462
author_curate_reward""
vote details (2)
@thecryptofiend ·
Great, glad it helped:)
👍  
properties (23)
authorthecryptofiend
permlinkre-papa-pepper-re-thecryptofiend-markdown-basics-for-beginners-20161015t130312065z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 13:03:12
last_update2016-10-15 13:03:12
depth2
children3
last_payout2016-11-15 12:30: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_length23
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,540,154
net_rshares1,293,087,161
author_curate_reward""
vote details (1)
@papa-pepper ·
Sure did, I knew nothing about this 3 months ago and have been learning the whole time.

Now I have a few new skills to implement!

Thanks!
👍  
properties (23)
authorpapa-pepper
permlinkre-thecryptofiend-re-papa-pepper-re-thecryptofiend-markdown-basics-for-beginners-20161015t154443641z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 15:44:48
last_update2016-10-15 15:44:48
depth3
children2
last_payout2016-11-15 12:30: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_length139
author_reputation1,951,223,832,091,597
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,541,143
net_rshares25,642,112,517
author_curate_reward""
vote details (1)
@partykim ·
Really great post for the beginner have never use mark down before! Thank you for easy explanation : )
properties (22)
authorpartykim
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180108t161140799z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-08 16:11:39
last_update2018-01-08 16:11:39
depth1
children0
last_payout2018-01-15 16:11: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_length102
author_reputation450,979,962,173
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,035,580
net_rshares0
@pepperonii ·
Hmmmm. Very very useful information you 've got here. Tanx a lot for sharing
properties (22)
authorpepperonii
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180106t084426890z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-06 08:44:36
last_update2018-01-06 08:44:36
depth1
children0
last_payout2018-01-13 08:44: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_length76
author_reputation16,347,156,507
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,477,099
net_rshares0
@phoenixwren ·
Thank you for this!
properties (22)
authorphoenixwren
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170917t155711979z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-09-17 15:57:21
last_update2017-09-17 15:57:21
depth1
children0
last_payout2017-09-24 15:57: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_length19
author_reputation257,164,421,568,167
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,148,500
net_rshares0
@photosandthecity ·
Thanks for this quick rundown - I´ve never used Markdown before and your post is super helpfull to get a first idea. Now it´s up to me to use it!
properties (22)
authorphotosandthecity
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180331t201539024z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-03-31 20:15:39
last_update2018-03-31 20:15:39
depth1
children0
last_payout2018-04-07 20:15: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_length145
author_reputation462,182,923
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,675,259
net_rshares0
@pinktheory ·
Thank you! Very informative!
properties (22)
authorpinktheory
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180110t153907258z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-10 15:39:06
last_update2018-01-10 15:39:06
depth1
children0
last_payout2018-01-17 15:39: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_length28
author_reputation691,086,252
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,525,954
net_rshares0
@priya888 ·
It's really very informative, Thanks for the useful post :)
properties (22)
authorpriya888
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180628t141734511z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-28 14:17:27
last_update2018-06-28 14:17:27
depth1
children0
last_payout2018-07-05 14:17: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_length59
author_reputation1,170,440,236
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id62,622,571
net_rshares0
@quincho ·
$0.30
Thanks for the great explanation. I am new here and will surely take a big profit from this article. Good luck!
👍  , , , , , ,
properties (23)
authorquincho
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170622t192250170z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-22 19:22:54
last_update2017-06-22 19:22:54
depth1
children2
last_payout2017-06-29 19:22:54
cashout_time1969-12-31 23:59:59
total_payout_value0.258 HBD
curator_payout_value0.041 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation2,337,391,319,859
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,670,337
net_rshares23,783,029,599
author_curate_reward""
vote details (7)
@mraza ·
please up vote
properties (22)
authormraza
permlinkre-quincho-re-thecryptofiend-markdown-basics-for-beginners-20180104t054902923z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-04 05:49:03
last_update2018-01-04 05:49:03
depth2
children0
last_payout2018-01-11 05:49: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_length14
author_reputation82,268,035,739
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,954,000
net_rshares0
@thecryptofiend ·
$0.07
properties (23)
authorthecryptofiend
permlinkre-quincho-re-thecryptofiend-markdown-basics-for-beginners-20170622t194006820z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-22 19:40:06
last_update2017-06-22 19:40:06
depth2
children0
last_payout2017-06-29 19:40:06
cashout_time1969-12-31 23:59:59
total_payout_value0.074 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,672,197
net_rshares6,061,469,831
author_curate_reward""
vote details (3)
@rajubala8 ·
very help ful
👍  
properties (23)
authorrajubala8
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170723t114312550z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-23 11:43:15
last_update2017-07-23 11:43:15
depth1
children1
last_payout2017-07-30 11:43: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_length13
author_reputation21,258,567,580
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,407,800
net_rshares116,066,459
author_curate_reward""
vote details (1)
@thecryptofiend ·
Thank you!
👍  
properties (23)
authorthecryptofiend
permlinkre-rajubala8-re-thecryptofiend-markdown-basics-for-beginners-20170723t115701009z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-23 11:56:57
last_update2017-07-23 11:56:57
depth2
children0
last_payout2017-07-30 11:56: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_length10
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,408,954
net_rshares475,872,482
author_curate_reward""
vote details (1)
@ranulfo ·
__Thanks for sharing!__ I still learning and my question is simple.  __How can I preview the post before publishing it?__
properties (22)
authorranulfo
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170831t023113652z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-31 02:31:18
last_update2017-08-31 02:31:18
depth1
children1
last_payout2017-09-07 02:31: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_length121
author_reputation21,269,947
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,401,904
net_rshares0
@thecryptofiend ·
There is a preview window that shows how your post will look just below where you type both with comments and posts.
properties (22)
authorthecryptofiend
permlinkre-ranulfo-re-thecryptofiend-markdown-basics-for-beginners-20170831t121241449z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-31 12:12:42
last_update2017-08-31 12:12:42
depth2
children0
last_payout2017-09-07 12:12:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,440,294
net_rshares0
@rawdoctor ·
Awesome!! 1st post sorted and looking good, onto second with more to come!  Thanks for the post @thecryptofiend
👍  
properties (23)
authorrawdoctor
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171207t071709796z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thecryptofiend"],"app":"steemit/0.1"}
created2017-12-07 07:17:21
last_update2017-12-07 07:17:21
depth1
children0
last_payout2017-12-14 07:17: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_length111
author_reputation283,194,240,392
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,639,845
net_rshares963,249,838
author_curate_reward""
vote details (1)
@rbreauxfl ·
Great post thank you, I look forward to using markdown now.👍🏼😀
properties (22)
authorrbreauxfl
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171129t065642832z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-29 06:56:45
last_update2017-11-29 06:56:45
depth1
children0
last_payout2017-12-06 06:56: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_length62
author_reputation720,694,737,856
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,857,154
net_rshares0
@rea ·
Hey @thecrypofiend.

After the new hardfork has apparently scrapped the "Raw HTML" option, this is a perfect tutorial to proper formatting and shortcuts to get there. 

Fantastic post as is the norm with you!
👍  
properties (23)
authorrea
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161016t082330196z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thecrypofiend"]}
created2016-10-16 08:23:36
last_update2016-10-16 08:23:36
depth1
children3
last_payout2016-11-15 12:30: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_length208
author_reputation388,195,597,445,775
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,546,816
net_rshares34,828,183,494
author_curate_reward""
vote details (1)
@thecryptofiend ·
Thank you.  I think you can still use html with markdown.  You just can't switch between the text editor and html once you have started typing.
👍  
properties (23)
authorthecryptofiend
permlinkre-rea-re-thecryptofiend-markdown-basics-for-beginners-20161016t124824569z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-16 12:48:24
last_update2016-10-16 12:48:24
depth2
children2
last_payout2016-11-15 12:30: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_length143
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,547,880
net_rshares107,702,601,812
author_curate_reward""
vote details (1)
@rea ·
Exactly. I was so used to typing it up on the editor and adding presentational markdowns later. 

So your guide is all the more awesome for helping me out!
👍  
properties (23)
authorrea
permlinkre-thecryptofiend-re-rea-re-thecryptofiend-markdown-basics-for-beginners-20161016t222413258z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-16 22:24:21
last_update2016-10-16 22:24:21
depth3
children1
last_payout2016-11-15 12:30: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_length155
author_reputation388,195,597,445,775
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,551,916
net_rshares26,124,352,836
author_curate_reward""
vote details (1)
@reanimateher ·
This is wonderful. Being new to the platform and not knowing much about it I found this very helpful!
properties (22)
authorreanimateher
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180817t132054097z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-08-17 13:20:54
last_update2018-08-17 13:20:54
depth1
children0
last_payout2018-08-24 13:20: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_length101
author_reputation1,218,076,744,061
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id68,499,639
net_rshares0
@rebele93 ·
Upvoted.  Thank you for posting this. There were some things I couldn't figure out before I found your post.  I'm new here. Please consider giving my profile a visit. Cheers, Rebele93
properties (22)
authorrebele93
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170912t151741300z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-09-12 15:17:42
last_update2017-09-12 15:17:42
depth1
children0
last_payout2017-09-19 15:17: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_length183
author_reputation4,278,009,280,942
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,669,301
net_rshares0
@rizalnazim ·
Thank for information nice post already upvote ..please follow me and teach me I wanna be like you a master
properties (22)
authorrizalnazim
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171222t164817620z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-22 16:48:18
last_update2017-12-22 16:48:18
depth1
children0
last_payout2017-12-29 16: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_length107
author_reputation1,827,647,489
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,723,791
net_rshares0
@rosemarynknight ·
Thank you so much for this.  This is the first time I have ever come across markdown so it has been 'interesting' trying to get my head round it but this post really gives me the basic stuff that I need.  Goin got bookmark and use repeatedly!

THANKS A LOT!
properties (22)
authorrosemarynknight
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171219t211044338z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-19 21:10:45
last_update2017-12-19 21:10:45
depth1
children0
last_payout2017-12-26 21: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_length257
author_reputation14,889,465,095
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,248,248
net_rshares0
@rudel ·
$0.11
https://media.giphy.com/media/3o7bujnXNSdLdaFE5O/giphy.gif
👍  , ,
properties (23)
authorrudel
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170717t224713028z
categorysteemit
json_metadata{"tags":["steemit"],"image":["https://media.giphy.com/media/3o7bujnXNSdLdaFE5O/giphy.gif"],"app":"steemit/0.1"}
created2017-07-17 04:43:09
last_update2017-07-17 04:43:09
depth1
children1
last_payout2017-07-24 04:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.083 HBD
curator_payout_value0.027 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation-26,242,897,548
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,732,477
net_rshares21,468,642,107
author_curate_reward""
vote details (3)
@thecryptofiend ·
Thanks!
👍  
properties (23)
authorthecryptofiend
permlinkre-rudel-re-thecryptofiend-markdown-basics-for-beginners-20170717t112846631z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-17 11:28:45
last_update2017-07-17 11:28:45
depth2
children0
last_payout2017-07-24 11:28: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_length7
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,757,980
net_rshares0
author_curate_reward""
vote details (1)
@ruth-girl ·
$0.08
Thanks for the time-saving tips! Good work!
👍  , ,
properties (23)
authorruth-girl
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170729t083426822z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-29 08:34:27
last_update2017-07-29 08:34:27
depth1
children1
last_payout2017-08-05 08:34:27
cashout_time1969-12-31 23:59:59
total_payout_value0.059 HBD
curator_payout_value0.017 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation470,010,700,604,363
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,098,590
net_rshares20,561,752,277
author_curate_reward""
vote details (3)
@thecryptofiend ·
You're welcome!
👍  
properties (23)
authorthecryptofiend
permlinkre-ruth-girl-re-thecryptofiend-markdown-basics-for-beginners-20170729t123014834z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-29 12:30:15
last_update2017-07-29 12:30:15
depth2
children0
last_payout2017-08-05 12: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_length15
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,113,799
net_rshares0
author_curate_reward""
vote details (1)
@ryan-casterly ·
¡Hermosa publicación! 
Me resulta demasiado útil, ya que recién estoy comenzando en el mundo de Steemit.  
Sencillamente gracias y te deseo mucho exito
properties (22)
authorryan-casterly
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171024t134250730z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-10-24 14:36:33
last_update2017-10-24 14:36:33
depth1
children0
last_payout2017-10-31 14:36: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_length151
author_reputation21,331,057
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,459,076
net_rshares0
@ryvanhood ·
Hello, this is very useful for me as new here is steemit

Thank you very much
properties (22)
authorryvanhood
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171025t135910321z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-10-25 14:01:09
last_update2017-10-25 14:01:09
depth1
children0
last_payout2017-11-01 14:01: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_length77
author_reputation79,825,362
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,534,886
net_rshares0
@saerdnalesneh ·
Thank you very much for all the useful informations.
properties (22)
authorsaerdnalesneh
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180129t135248919z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-29 13:52:51
last_update2018-01-29 13:52:51
depth1
children0
last_payout2018-02-05 13: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_length52
author_reputation441,239,912
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,295,746
net_rshares0
@saikrishna ·
$0.19
Nice work and good info..  So good to be a steemian.
👍  , , ,
properties (23)
authorsaikrishna
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170627t113744263z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-27 11:37:48
last_update2017-06-27 11:37:48
depth1
children0
last_payout2017-07-04 11:37:48
cashout_time1969-12-31 23:59:59
total_payout_value0.146 HBD
curator_payout_value0.045 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation358,960,542
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,317,422
net_rshares21,336,862,714
author_curate_reward""
vote details (4)
@samest ·
This post is really awesome. I have tried to make use of some and it really help. [Follow me](@samest) 

Thanks @theceyptofiend
properties (22)
authorsamest
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170714t093642406z
categorysteemit
json_metadata{"tags":["steemit"],"users":["theceyptofiend"],"links":["@samest"],"app":"steemit/0.1"}
created2017-07-14 09:36:51
last_update2017-07-14 09:36:51
depth1
children0
last_payout2017-07-21 09:36: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_length127
author_reputation42,167,757,271,512
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,437,769
net_rshares0
@sekwof ·
You make it sound so easy. Bet I can screw it up! ;0). Thanks much for your time spent creating a helpful for newbs post!
properties (22)
authorsekwof
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180124t133415525z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-24 13:34:15
last_update2018-01-24 13:34:15
depth1
children0
last_payout2018-01-31 13:34:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length121
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,927,050
net_rshares0
@sendingtime ·
Thank you so much for this guide.  It has been very helpful.  I want to let you know that the link that you provided for the image hosting site is giving me an SSL warning when I try to access the site.  @blueorgy might want to look into it.
properties (22)
authorsendingtime
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180515t031033695z
categorysteemit
json_metadata{"tags":["steemit"],"users":["blueorgy"],"app":"steemit/0.1"}
created2018-05-15 03:10:33
last_update2018-05-15 03:10:33
depth1
children0
last_payout2018-05-22 03:10: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_length241
author_reputation3,163,477,849
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,748,156
net_rshares0
@shadowspub ·
http://i.imgur.com/SsfejKK.jpg
Hi @thecryptofiend, I just stopped back to let you know your post was one of my favourite reads and I included it in my Steemit Ramble. [You can read what I wrote about your post here.](https://steemit.com/curation/@shadowspub/oct-14-and-15-steemit-ramble-notes-on-my-favourite-reads)
👍  ,
properties (23)
authorshadowspub
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161015t213746832z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thecryptofiend"],"image":["http://i.imgur.com/SsfejKK.jpg"],"links":["https://steemit.com/curation/@shadowspub/oct-14-and-15-steemit-ramble-notes-on-my-favourite-reads"]}
created2016-10-15 21:37:48
last_update2016-10-15 21:37:48
depth1
children1
last_payout2016-11-15 12:30: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_length315
author_reputation629,153,341,486,746
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,543,697
net_rshares39,611,093,761
author_curate_reward""
vote details (2)
@thecryptofiend ·
Thank you for you support.  I will check it out now:)
👍  
properties (23)
authorthecryptofiend
permlinkre-shadowspub-re-thecryptofiend-markdown-basics-for-beginners-20161015t220327006z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 22:03:27
last_update2016-10-15 22:03:27
depth2
children0
last_payout2016-11-15 12:30: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_length53
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,543,832
net_rshares1,638,040,357
author_curate_reward""
vote details (1)
@shadysit ·
Nice! Looks easy enough. I'm new and I'm really excited to start sharing. Thanks :)
properties (22)
authorshadysit
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170823t023332931z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-23 02:33:36
last_update2017-08-23 02:33:36
depth1
children1
last_payout2017-08-30 02:33: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_length83
author_reputation1,263,235,386
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,593,275
net_rshares0
@thecryptofiend ·
You're welcome:)
👍  
properties (23)
authorthecryptofiend
permlinkre-shadysit-re-thecryptofiend-markdown-basics-for-beginners-20170823t122209874z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-23 12:22:09
last_update2017-08-23 12:22:09
depth2
children0
last_payout2017-08-30 12:22: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_length16
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,631,654
net_rshares945,913,801
author_curate_reward""
vote details (1)
@shoy ·
So informative for me as I’m very new to steemit!
properties (22)
authorshoy
permlinkre-thecryptofiend-markdown-basics-for-beginners-20190309t144159949z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2019-03-09 14:42:00
last_update2019-03-09 14:42:00
depth1
children0
last_payout2019-03-16 14: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_length49
author_reputation2,742,760,274
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id80,968,177
net_rshares0
@shufflesilver ·
$0.07
Thanks for posting, this helps a *steemit greenhorn* like me **immensely**! (just used my 1st markdown codes!) 

Your post is well written and super clear; you show the code and then how it looks in Steemit, nice. **upvoted and followed**.
👍  , , ,
properties (23)
authorshufflesilver
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170806t023822380z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-06 02:38:12
last_update2017-08-06 02:38:12
depth1
children1
last_payout2017-08-13 02:38:12
cashout_time1969-12-31 23:59:59
total_payout_value0.057 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length239
author_reputation34,236,800,200
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,903,870
net_rshares19,205,932,456
author_curate_reward""
vote details (4)
@thecryptofiend ·
Thank you - it really speeds up formatting IMO:)
👍  
properties (23)
authorthecryptofiend
permlinkre-shufflesilver-re-thecryptofiend-markdown-basics-for-beginners-20170806t122333462z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-06 12:23:15
last_update2017-08-06 12:23:15
depth2
children0
last_payout2017-08-13 12:23: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_length48
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,938,952
net_rshares0
author_curate_reward""
vote details (1)
@silabus ·
Thank god for this post, I thought in Steemit we cannot edit the font to italic or make heading (I am so dumb, I dont see the Editor button below the title editor). I almost gave up to write in here lol. Btw maybe the editor button can be colored more distinctively so people can see it easily. Ahhahahahha thx you!
properties (22)
authorsilabus
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180710t090719914z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-07-10 09:07:15
last_update2018-07-10 09:07:15
depth1
children0
last_payout2018-07-17 09:07: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_length315
author_reputation1,913,938,894
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id64,136,174
net_rshares0
@simonibarra ·
It helps for beginners like me.
properties (22)
authorsimonibarra
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170826t000332648z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-26 00:03:12
last_update2017-08-26 00:03:12
depth1
children1
last_payout2017-09-02 00:03: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_length31
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,888,808
net_rshares0
@thecryptofiend ·
Glad it was useful:)
properties (22)
authorthecryptofiend
permlinkre-simonibarra-re-thecryptofiend-markdown-basics-for-beginners-20170827t023422627z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-27 02:34:21
last_update2017-08-27 02:34:21
depth2
children0
last_payout2017-09-03 02:34: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_length20
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,986,609
net_rshares0
@simply-me · (edited)
OMG  the kittens are sooo cute... I am a dog person but I cannot resist those kittens.  Anyway, I am looking for how to colour the fonts in steemit but still have not found it.
properties (22)
authorsimply-me
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180503t074615858z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-05-03 07:46:15
last_update2018-05-03 07:46:39
depth1
children0
last_payout2018-05-10 07:46: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_length176
author_reputation5,502,142,386,750
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,592,982
net_rshares0
@skatkat ·
This was so helpful, thanks xx
👍  
properties (23)
authorskatkat
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180609t194323892z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-09 19:43:24
last_update2018-06-09 19:43:24
depth1
children0
last_payout2018-06-16 19:43: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_length30
author_reputation67,145,383
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id60,039,166
net_rshares0
author_curate_reward""
vote details (1)
@skbot ·
Thanks for this **useful topic** :)
👍  
properties (23)
authorskbot
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170819t110612600z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-19 11:06:18
last_update2017-08-19 11:06:18
depth1
children0
last_payout2017-08-26 11:06: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_length35
author_reputation18,134,909
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,253,820
net_rshares1,160,634,211
author_curate_reward""
vote details (1)
@skyrunner ·
$0.20
Well it looks like your going to help me become a better writer with this type of programming and its formats. I guess the program only accepts it the way it needs to be written. Its kind of new to me I might need some help still.
👍  , , , , ,
properties (23)
authorskyrunner
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170627t013346662z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-27 01:33:45
last_update2017-06-27 01:33:45
depth1
children0
last_payout2017-07-04 01:33:45
cashout_time1969-12-31 23:59:59
total_payout_value0.166 HBD
curator_payout_value0.037 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length230
author_reputation351,524,374
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,264,237
net_rshares22,497,559,994
author_curate_reward""
vote details (6)
@st3llar ·
$0.19
Thank you!
👍  , ,
properties (23)
authorst3llar
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170627t040247448z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-27 04:02:45
last_update2017-06-27 04:02:45
depth1
children1
last_payout2017-07-04 04:02:45
cashout_time1969-12-31 23:59:59
total_payout_value0.140 HBD
curator_payout_value0.047 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation6,226,336,426,581
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,278,549
net_rshares20,867,607,592
author_curate_reward""
vote details (3)
@mraza ·
please up vote
properties (22)
authormraza
permlinkre-st3llar-re-thecryptofiend-markdown-basics-for-beginners-20180104t054735373z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-04 05:47:36
last_update2018-01-04 05:47:36
depth2
children0
last_payout2018-01-11 05:47: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_length14
author_reputation82,268,035,739
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,953,766
net_rshares0
@stacyalan ·
Thanks for the info.
👍  
properties (23)
authorstacyalan
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180608t021650853z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-08 02:16:51
last_update2018-06-08 02:16:51
depth1
children0
last_payout2018-06-15 02:16: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_length20
author_reputation25,561,312,594
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,777,724
net_rshares0
author_curate_reward""
vote details (1)
@steemplus ·
Great post! In fact, it was so good that we decided to feature it in our latest newspaper. Read it here: https://steemit.com/steemplus/@steemplus/steemplus-saturday-october-15-the-daily-newspaper-that-pays-you-to-find-high-quality-content
👍  
properties (23)
authorsteemplus
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161015t234906146z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://steemit.com/steemplus/@steemplus/steemplus-saturday-october-15-the-daily-newspaper-that-pays-you-to-find-high-quality-content"]}
created2016-10-15 23:49:06
last_update2016-10-15 23:49:06
depth1
children1
last_payout2016-11-15 12:30: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_length238
author_reputation4,137,026,715,658
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,544,466
net_rshares30,162,521,956
author_curate_reward""
vote details (1)
@thecryptofiend ·
Thank you:)
properties (22)
authorthecryptofiend
permlinkre-steemplus-re-thecryptofiend-markdown-basics-for-beginners-20161016t013125108z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-16 01:31:24
last_update2016-10-16 01:31:24
depth2
children0
last_payout2016-11-15 12:30: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_length11
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,544,995
net_rshares0
@steemsteemah ·
This link from @charlieshrem in your article is no longer working: https://www.steempower.org/editor
properties (22)
authorsteemsteemah
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180210t201654104z
categorysteemit
json_metadata{"tags":["steemit"],"users":["charlieshrem"],"links":["https://www.steempower.org/editor"],"app":"steemit/0.1"}
created2018-02-10 20:16:54
last_update2018-02-10 20:16:54
depth1
children0
last_payout2018-02-17 20:16: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_length100
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,494,828
net_rshares0
@suekong ·
Thank you! Easy and clear! :)
properties (22)
authorsuekong
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180423t042151347z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-04-23 04:21:51
last_update2018-04-23 04:21:51
depth1
children0
last_payout2018-04-30 04:21: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_length29
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,603,565
net_rshares0
@sweecee ·
Hi, Great post! I wanted to resteem it but I couldn't ?!? It's because it's too old?
👍  
properties (23)
authorsweecee
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170917t083359331z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-09-17 08:34:00
last_update2017-09-17 08:34:00
depth1
children0
last_payout2017-09-24 08:34: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_length84
author_reputation-547,443,381,596
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,118,168
net_rshares1,148,996,386
author_curate_reward""
vote details (1)
@tanchiknik ·
It is useful, thank you.
But because steam -redaktor html accepts, no?
👍  
properties (23)
authortanchiknik
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161015t200001007z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 19:59:18
last_update2016-10-15 19:59:18
depth1
children1
last_payout2016-11-15 12:30: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_length70
author_reputation42,310,482,431
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,542,921
net_rshares30,161,113,756
author_curate_reward""
vote details (1)
@thecryptofiend ·
Do you mean does Steemit allow HTML?  Yes absolutely you can use either markdown or HTML or combine both of them.
👍  
properties (23)
authorthecryptofiend
permlinkre-tanchiknik-re-thecryptofiend-markdown-basics-for-beginners-20161015t200555042z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-15 20:05:54
last_update2016-10-15 20:05:54
depth2
children0
last_payout2016-11-15 12:30: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_length113
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,542,993
net_rshares130,156,173
author_curate_reward""
vote details (1)
@tc1 ·
Very informative post especially for the _newbies_. I hope to put all these to good use. **Thanks** once again
properties (22)
authortc1
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171228t210825680z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-28 21:08:39
last_update2017-12-28 21:08:39
depth1
children2
last_payout2018-01-04 21: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_length110
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id25,755,936
net_rshares0
@lorilikes · (edited)
>testing only >testing only

Oh it works so just letting you all know! I regularly refer to this post!
properties (22)
authorlorilikes
permlinkre-tc1-re-thecryptofiend-markdown-basics-for-beginners-20171230t025302384z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-30 02:53:03
last_update2018-01-01 01:59:12
depth2
children1
last_payout2018-01-06 02:53: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_length102
author_reputation1,453,790,919,410
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id25,978,057
net_rshares0
@shinseokhyu ·
Thanks at first to visit this post 
very usesful to  me
👍  
properties (23)
authorshinseokhyu
permlinkre-lorilikes-re-tc1-re-thecryptofiend-markdown-basics-for-beginners-20171231t142858604z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-31 14:29:00
last_update2017-12-31 14:29:00
depth3
children0
last_payout2018-01-07 14:29: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_length55
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,223,585
net_rshares0
author_curate_reward""
vote details (1)
@technicalsandesh ·
Thanks for the best post to understand about markdown
👍  
properties (23)
authortechnicalsandesh
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180616t203430589z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-16 20:34:39
last_update2018-06-16 20:34:39
depth1
children0
last_payout2018-06-23 20:34: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_length53
author_reputation88,707,832,528
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,019,211
net_rshares119,455,032
author_curate_reward""
vote details (1)
@techslut ·
Upvoted at 100%. This is a very helpful post to those of us too lazy to HTML. Like me.
👍  ,
properties (23)
authortechslut
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161014t221011575z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 22:10:03
last_update2016-10-14 22:10:03
depth1
children1
last_payout2016-11-15 12:30: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_length86
author_reputation111,778,832,002,739
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,536,018
net_rshares25,523,058,653
author_curate_reward""
vote details (2)
@thecryptofiend ·
Thanks glad you found it useful.  I would call it being smart with your time:)
properties (22)
authorthecryptofiend
permlinkre-techslut-re-thecryptofiend-markdown-basics-for-beginners-20161014t224847398z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 22:48:45
last_update2016-10-14 22:48:45
depth2
children0
last_payout2016-11-15 12:30: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_length78
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,536,248
net_rshares0
@thatkidsblack ·
people helping people. thanks man. feeling blessed to be here even aha
properties (22)
authorthatkidsblack
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170902t202143436z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-09-02 20:21:42
last_update2017-09-02 20:21:42
depth1
children1
last_payout2017-09-09 20:21: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_length70
author_reputation188,046,713,722,205
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,681,259
net_rshares0
@thecryptofiend ·
:)
👍  
properties (23)
authorthecryptofiend
permlinkre-thatkidsblack-re-thecryptofiend-markdown-basics-for-beginners-20170903t122546703z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-09-03 12:25:45
last_update2017-09-03 12:25:45
depth2
children0
last_payout2017-09-10 12:25: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_length2
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,737,346
net_rshares307,563,911
author_curate_reward""
vote details (1)
@the-stoned-ape ·
Great article and a great example of how to write a useful article! Fantastic job. :)
👍  ,
properties (23)
authorthe-stoned-ape
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161014t211143273z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 21:11:45
last_update2016-10-14 21:11:45
depth1
children1
last_payout2016-11-15 12:30: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_length85
author_reputation1,904,858,717,242
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,535,525
net_rshares29,911,765,926
author_curate_reward""
vote details (2)
@thecryptofiend ·
Thank for your kind words.  I just hope it isn't too confusing.
properties (22)
authorthecryptofiend
permlinkre-the-stoned-ape-re-thecryptofiend-markdown-basics-for-beginners-20161014t212543878z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-10-14 21:25:42
last_update2016-10-14 21:25:42
depth2
children0
last_payout2016-11-15 12:30: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_length63
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,535,658
net_rshares0
@thegoodlife ·
Great intro on making posts on Steemit!! So much appreciated. Im a newbie and trying to absorb as much as possible before starting this journey. Thank you @thecryptofiend
properties (22)
authorthegoodlife
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170811t141402552z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thecryptofiend"],"app":"steemit/0.1"}
created2017-08-11 14:14:06
last_update2017-08-11 14:14:06
depth1
children0
last_payout2017-08-18 14:14: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_length170
author_reputation1,927,978,744
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id11,506,253
net_rshares0
@thesteemreport ·
$0.09
Thank you for posting this amazing walkthrough. It answered a ton of questions I had as a new Steemit user. 

May the Steem flow your way!
👍  , , ,
properties (23)
authorthesteemreport
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170721t222701371z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-21 22:27:03
last_update2017-07-21 22:27:03
depth1
children1
last_payout2017-07-28 22:27:03
cashout_time1969-12-31 23:59:59
total_payout_value0.083 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length138
author_reputation15,983,530,356
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,243,870
net_rshares22,908,311,375
author_curate_reward""
vote details (4)
@thecryptofiend ·
Thank you!
👍  
properties (23)
authorthecryptofiend
permlinkre-thesteemreport-re-thecryptofiend-markdown-basics-for-beginners-20170721t223524171z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-21 22:35:24
last_update2017-07-21 22:35:24
depth2
children0
last_payout2017-07-28 22:35: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_length10
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,244,429
net_rshares0
author_curate_reward""
vote details (1)
@thilinanamal ·
Thank you very much. This was very helpful to make my articles
properties (22)
authorthilinanamal
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180226t184657952z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-26 18:47:00
last_update2018-02-26 18:47:00
depth1
children0
last_payout2018-03-05 18:47: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_length62
author_reputation12,698,312,490
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,666,666
net_rshares0
@tictactoejam ·
Really helpful. Thanks for listing out all the markdown options!
properties (22)
authortictactoejam
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171204t193146429z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-04 19:31:48
last_update2017-12-04 19:31:48
depth1
children0
last_payout2017-12-11 19:31: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_length64
author_reputation19,925,565
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,393,087
net_rshares0
@titajuls ·
Hi there @thecryptofiend I was advised to read this for beginners, quite helpful thank you! I still can’t figure out the Numbered Lists for my most recent post, somehow everything is showing as 1. Any advise please? 😊
properties (22)
authortitajuls
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180331t031232362z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thecryptofiend"],"app":"steemit/0.1"}
created2018-03-31 03:12:39
last_update2018-03-31 03:12:39
depth1
children0
last_payout2018-04-07 03:12: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_length217
author_reputation24,274,221,320
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,553,972
net_rshares0
@tonegreenthumb ·
$0.08
Thanks alot! I need to practice, never made posts before this is very helpful
👍  , ,
properties (23)
authortonegreenthumb
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170727t205951712z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-27 20:59:54
last_update2017-07-27 20:59:54
depth1
children1
last_payout2017-08-03 20:59:54
cashout_time1969-12-31 23:59:59
total_payout_value0.065 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation5,486,559,971
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,952,121
net_rshares21,821,106,386
author_curate_reward""
vote details (3)
@thecryptofiend ·
You're welcome!
👍  ,
properties (23)
authorthecryptofiend
permlinkre-tonegreenthumb-re-thecryptofiend-markdown-basics-for-beginners-20170727t230927576z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-27 23:09:15
last_update2017-07-27 23:09:15
depth2
children0
last_payout2017-08-03 23:09: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_length15
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,961,038
net_rshares1,428,042,275
author_curate_reward""
vote details (2)
@tonyliu ·
Thanks for the post.  It's really helpful for markdown starters like me!
properties (22)
authortonyliu
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171225t022945517z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-25 02:27:51
last_update2017-12-25 02:27:51
depth1
children0
last_payout2018-01-01 02:27: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_length72
author_reputation105,187,924,522
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id25,102,967
net_rshares0
@twiter ·
Very useful information.
properties (22)
authortwiter
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180210t044727740z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-02-10 04:47:12
last_update2018-02-10 04:47:12
depth1
children0
last_payout2018-02-17 04: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_length24
author_reputation2,309,982,594
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,327,375
net_rshares0
@ultramylk ·
Thank you so much! You're visual examples are super helpful :) !!!
👍  
properties (23)
authorultramylk
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170623t073847147z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-23 07:38:48
last_update2017-06-23 07:38:48
depth1
children2
last_payout2017-06-30 07: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_length66
author_reputation243,305,139,574
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,738,405
net_rshares1,120,072,875
author_curate_reward""
vote details (1)
@thecryptofiend ·
Glad you found it useful!
👍  ,
properties (23)
authorthecryptofiend
permlinkre-ultramylk-re-thecryptofiend-markdown-basics-for-beginners-20170623t200820357z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-23 20:08:21
last_update2017-06-23 20:08:21
depth2
children1
last_payout2017-06-30 20:08: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_length25
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,817,470
net_rshares1,385,637,945
author_curate_reward""
vote details (2)
@saikrishna ·
Yes.. It is true
properties (22)
authorsaikrishna
permlinkre-thecryptofiend-re-ultramylk-re-thecryptofiend-markdown-basics-for-beginners-20170627t113539963z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-27 11:35:45
last_update2017-06-27 11:35:45
depth3
children0
last_payout2017-07-04 11:35: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_length16
author_reputation358,960,542
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,317,214
net_rshares0
@ultranum ·
Very informative for a noob like myself.
Looking forward to learning more how this site works as well as learning some new things/contributing.
properties (22)
authorultranum
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180109t102606955z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-09 10:26:09
last_update2018-01-09 10:26:09
depth1
children0
last_payout2018-01-16 10:26: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_length143
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,219,314
net_rshares0
@unspeakableme ·
$0.75
I'm still a beginner so thank you very much for this guide!
👍  , , , , , , , , , , , ,
properties (23)
authorunspeakableme
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170618t072713379z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-18 07:27:24
last_update2017-06-18 07:27:24
depth1
children1
last_payout2017-06-25 07:27:24
cashout_time1969-12-31 23:59:59
total_payout_value0.576 HBD
curator_payout_value0.178 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation876,868,510,427
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,156,865
net_rshares36,948,265,399
author_curate_reward""
vote details (13)
@thecryptofiend ·
$0.04
properties (23)
authorthecryptofiend
permlinkre-unspeakableme-re-thecryptofiend-markdown-basics-for-beginners-20170618t110456591z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-18 11:04:57
last_update2017-06-18 11:04:57
depth2
children0
last_payout2017-06-25 11:04:57
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,167,139
net_rshares2,240,147,129
author_curate_reward""
vote details (5)
@usmanalishah ·
$0.11
Thank you for sharing this.  Being new to Steemit, it is very helpful plus you used pretty simple and straight language without Jargon which made it easy for someone like me to digest easily. Thanks once again.
👍  , ,
properties (23)
authorusmanalishah
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170718t093705408z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-18 09:37:06
last_update2017-07-18 09:37:06
depth1
children0
last_payout2017-07-25 09:37:06
cashout_time1969-12-31 23:59:59
total_payout_value0.082 HBD
curator_payout_value0.026 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length210
author_reputation370,846,458,645
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,857,027
net_rshares21,471,482,184
author_curate_reward""
vote details (3)
@vaggrippino ·
Well, I already knew Markdown, but this post still helped. The interface is not really intuitive. When I first saw "Editor" at the top right of the editor, I assumed it was the sort of WYSIWYG editor I've come to expect at other blogging platforms, such as Wordpress.

When I clicked "Editor" and it changed to "Markdown", I naturally assumed that was the Markdown editor.

One final thing to note is that Steemit does not actually support Markdown as documented in the frequently linked [Markdown Cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet). It only supports a subset of it. There are some undocumented restrictions. In particular, inline HTML is checked before posting.

One restriction that I encountered when submitting my second post was that I was not allowed to use the `<abbr>` tag. I have no idea what other tags might not be allowed.
properties (22)
authorvaggrippino
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180422t012447329z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet"],"app":"steemit/0.1"}
created2018-04-22 01:24:48
last_update2018-04-22 01:24:48
depth1
children0
last_payout2018-04-29 01:24: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_length877
author_reputation48,200,842
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,398,893
net_rshares0
@valthewriter ·
Thank you so much! This is so helpful!
👍  
properties (23)
authorvalthewriter
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180312t151949610z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-03-12 15:20:06
last_update2018-03-12 15:20:06
depth1
children0
last_payout2018-03-19 15:20: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_length38
author_reputation812,455,028
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id43,928,032
net_rshares617,883,575
author_curate_reward""
vote details (1)
@verbalmilk ·
Thank you for this!
👍  
properties (23)
authorverbalmilk
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180130t043608091z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-30 04:36:09
last_update2018-01-30 04:36:09
depth1
children0
last_payout2018-02-06 04:36: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_length19
author_reputation71,895,910,638
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,466,805
net_rshares0
author_curate_reward""
vote details (1)
@vrinteractive ·
Great tutorial post. Especially good read from beginners perspective. Thank you!
properties (22)
authorvrinteractive
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171114t233947405z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-14 23:39:48
last_update2017-11-14 23:39:48
depth1
children0
last_payout2017-11-21 23:39: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_length80
author_reputation29,167,704
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,409,311
net_rshares0
@vueltalmundo ·
$0.09
Vaya esto sera de ayuda
👍  , ,
properties (23)
authorvueltalmundo
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170709t114817712z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-09 11:48:18
last_update2017-07-09 11:48:18
depth1
children1
last_payout2017-07-16 11:48:18
cashout_time1969-12-31 23:59:59
total_payout_value0.065 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation444,162,994
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,857,022
net_rshares21,789,093,859
author_curate_reward""
vote details (3)
@thecryptofiend ·
Excellent!
👍  ,
properties (23)
authorthecryptofiend
permlinkre-vueltalmundo-re-thecryptofiend-markdown-basics-for-beginners-20170709t133801120z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-09 13:38:00
last_update2017-07-09 13:38:00
depth2
children0
last_payout2017-07-16 13:38: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_length10
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,867,334
net_rshares0
author_curate_reward""
vote details (2)
@wangwenjing ·
Very useful. Thanks for your share.
👍  
properties (23)
authorwangwenjing
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170905t220010253z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-09-05 22:00:09
last_update2017-09-05 22:00:09
depth1
children1
last_payout2017-09-12 22:00: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_length35
author_reputation11,462,624,156,054
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,989,341
net_rshares911,083,985
author_curate_reward""
vote details (1)
@thecryptofiend ·
You're welcome.
properties (22)
authorthecryptofiend
permlinkre-wangwenjing-re-thecryptofiend-markdown-basics-for-beginners-20170905t221804714z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-09-05 22:18:03
last_update2017-09-05 22:18:03
depth2
children0
last_payout2017-09-12 22:18: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_length15
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,990,462
net_rshares0
@weberh8 ·
Thank you so much ! Very helpful for blogging
properties (22)
authorweberh8
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180123t211323198z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-23 21:13:24
last_update2018-01-23 21:13:24
depth1
children0
last_payout2018-01-30 21: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_length45
author_reputation2,833,853,274,700
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,742,067
net_rshares0
@whydowork ·
$0.08
great tutorial. markdown is a versatile formatting tool
👍  , , ,
properties (23)
authorwhydowork
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170712t153307180z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-12 15:33:09
last_update2017-07-12 15:33:09
depth1
children0
last_payout2017-07-19 15:33:09
cashout_time1969-12-31 23:59:59
total_payout_value0.061 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation1,925,406,992
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,236,797
net_rshares21,889,325,804
author_curate_reward""
vote details (4)
@wickedgood ·
Awesome tips, thanks! Still very very new to Steemit, and this post really made things easier :) Thank you so much!
properties (22)
authorwickedgood
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180303t025317959z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-03-03 02:53:18
last_update2018-03-03 02:53:18
depth1
children0
last_payout2018-03-10 02:53: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_length115
author_reputation872,644,588
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,777,102
net_rshares0
@williamaellerbe ·
Thank you for sharing this post with us. It was through this **incredible** Steemit community that I would receive my first introduction to Markdown. As I continue to provide content for this platform, I am to get better at the format of my content, as a compliment to the quality of what is written.
properties (22)
authorwilliamaellerbe
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171222t005254796z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-22 00:54:24
last_update2017-12-22 00:54:24
depth1
children0
last_payout2017-12-29 00:54: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_length300
author_reputation6,665,744,530
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,612,024
net_rshares0
@yangweilong ·
This post is very good; this Markdown is very good; it feels easier to use than html; and I'm still not quite sure what other strengths it has.
properties (22)
authoryangweilong
permlinkre-thecryptofiend-markdown-basics-for-beginners-20180124t064725896z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-24 06:47:24
last_update2018-01-24 06:47:24
depth1
children0
last_payout2018-01-31 06:47: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_length143
author_reputation0
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,846,644
net_rshares0
@yrvk0n ·
This guide was very helpful, and I'm just starting at Steemit, I have some familiarity with BB Code used in forums and I find it very similar in the simplicity of it.
Will use it to make the posts as appealing as possible.
properties (22)
authoryrvk0n
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170913t211041831z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-09-13 21:10:42
last_update2017-09-13 21:10:42
depth1
children1
last_payout2017-09-20 21:10: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_length222
author_reputation439,572,799
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,800,219
net_rshares0
@thecryptofiend ·
Glad it was helpful.
properties (22)
authorthecryptofiend
permlinkre-yrvk0n-re-thecryptofiend-markdown-basics-for-beginners-20170913t212237144z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-09-13 21:22:30
last_update2017-09-13 21:22:30
depth2
children0
last_payout2017-09-20 21:22: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_length20
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,800,948
net_rshares0
@yycsteemit ·
Submit a Story 버튼을 눌러도 위와 같이 나오지 않으면 어떻게 해야햐죠??
properties (22)
authoryycsteemit
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170709t044339948z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-09 04:43:42
last_update2017-07-09 04:43:42
depth1
children0
last_payout2017-07-16 04:43: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_length47
author_reputation22,239,447
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,827,298
net_rshares0
@z3rop0int ·
Thanks for this. Coming in, I had visions of HTML or BB formatting.
properties (22)
authorz3rop0int
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171121t014616485z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-21 01:44:33
last_update2017-11-21 01:44:33
depth1
children0
last_payout2017-11-28 01: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_length67
author_reputation3,443,621,329
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,038,386
net_rshares0
@zebbad ·
$0.19
Legend! 
This guide is very helpful, hopefully it will make my posts look nice. 

Any Markdown for aligning pictures to centre?
👍  ,
properties (23)
authorzebbad
permlinkre-thecryptofiend-markdown-basics-for-beginners-20170629t110852147z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-29 11:08:48
last_update2017-06-29 11:08:48
depth1
children0
last_payout2017-07-06 11:08:48
cashout_time1969-12-31 23:59:59
total_payout_value0.172 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation78,430,373,219
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,608,163
net_rshares21,017,914,458
author_curate_reward""
vote details (2)
@znhighlander ·
I hate HTML with the passion
👍  
properties (23)
authorznhighlander
permlinkre-thecryptofiend-markdown-basics-for-beginners-20161102t200451637z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-11-02 20:04:54
last_update2016-11-02 20:04:54
depth1
children1
last_payout2016-11-15 12:30: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_length28
author_reputation16,978,318,511
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,674,653
net_rshares8,490,270,951
author_curate_reward""
vote details (1)
@thecryptofiend ·
I'm not a big fan of it either!
properties (22)
authorthecryptofiend
permlinkre-znhighlander-re-thecryptofiend-markdown-basics-for-beginners-20161102t203858899z
categorysteemit
json_metadata{"tags":["steemit"]}
created2016-11-02 20:38:57
last_update2016-11-02 20:38:57
depth2
children0
last_payout2016-11-15 12:30: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_length31
author_reputation323,603,913,866,384
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,674,822
net_rshares0
@zoomtruth ·
Thank you for EXCELLENT DETAILED post for a Total newbie such as myself.  PEACE!
properties (22)
authorzoomtruth
permlinkre-thecryptofiend-markdown-basics-for-beginners-20171218t135807809z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-12-18 13:58:06
last_update2017-12-18 13:58:06
depth1
children0
last_payout2017-12-25 13:58:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation3,249,599,597,102
root_title"Steemit Markdown Basics for Beginners"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,027,504
net_rshares0