A post needs to be nicely formatted to be able to be read easily. Steemit supports [Markdown]( https://guides.github.com/features/mastering-markdown/) and you can achieve an attractive result, by using basic syntax & easy to remember commands. <div class="pull-left">https://steemitimages.com/DQmYsoFQqvzY1Y7cvL14MtTqsKLRrZyVBzvd5fXNRPThYqS/markdown.jpg</div> <br>There are also tools that you can use as editors, if you use one of them please comment below. I personally prefer to use raw html syntax (for some reason I find it easier) <br>In the next days I will post tips about formatting a post, my part three from ‘[What to Post]( https://steemit.com/steemit/@katerinaramm/deciding-what-to-write-about-researching-synthesis-of-a-blog-post-a-personal-approach-by-katerinaramm-part-1-what-to-post), [How to Research](https://steemit.com/steemit/@katerinaramm/deciding-what-to-write-about-researching-synthesis-of-a-blog-post-a-personal-approach-by-katerinaramm-part-2-researching), **Synthesis of a Blog Spot**), so I thought I should also include in advance a mark down guide with the most important commands I have been using for you that might not know them all. ## <center>Ξεκινάμε! Los geht’s! Let’s start! </center> # *Click On `Post`* <div class="pull-right">https://steemitimages.com/DQmXhu2fo6n6WZkjSH76AUwQWTuTAg62afecPME32GYYoiF/editor.jpg</div> # *You have the option to click the ‘Editor’ or leave as is ‘Raw Html’ In the below section we will show commands to be directly written in the post box (NO EDITOR)* --- # <center>TEXT Commands</center> ## <center>Headlines </center> You can put `#` on the left of your word/sentence to make it a headline. As the `#` number is increasing, the headline size decreases. ---- `# Headline 1` # Headline 1 . . ----- `#### Headline 4` #### Headline 4 . . `###### Headline 6` ###### Headline 6 --- ## <center>Text</center> Your text can be simple, `**bold**` **bold**, `*italics*`*italics*, `~~strikethrough~~` ~~strikethrough~~ ## <center>List </center> You can use `*`or `numbers` to create a list * list item 1 * list item 2 1. Item A 2. Item B ## <center>You can create a table!</center> `Header 1`| `|` `Header 2` `----------` `|` `----------` `Cell 1` `|` `Cell 2` Header 1 | Header 2 ---------- | ---------- Cell 1 | Cell 2 --- ## <center>Justify Text </center> `<div class="text-justify">` `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eget purus a tortor egestas placerat sit amet vitae sem. Nullam sit amet finibus justo. Donec volutpat ipsum leo. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Suspendisse sit amet dignissim ante. ` `</div>` - The Output will be - <div class="text-justify"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eget purus a tortor egestas placerat sit amet vitae sem. Nullam sit amet finibus justo. Donec volutpat ipsum leo. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Suspendisse sit amet dignissim ante. </div> <br> - Instead of <br>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eget purus a tortor egestas placerat sit amet vitae sem. Nullam sit amet finibus justo. Donec volutpat ipsum leo. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Suspendisse sit amet dignissim ante. ## <center>Allign text into two cells </center> Sometimes you may need to write something in two languages or input it in two different columns. <br> `<div class="pull-right">` `TEXT RIGHT Cras pellentesque, diam ut fringilla luctus, massa mauris fringilla magna, sed consequat mi odio in ante. Etiam quis odio in ante sagittis congue. Duis a ante egestas, pharetra nisl non, lacinia massa. Vestibulum ut mattis enim. Nam scelerisque iaculis sem in lacinia. Phasellus dui dui, pellentesque ac dui ac, rhoncus tempor tellus.` `</div>` `TEXT LEFT Cras pellentesque, diam ut fringilla luctus, massa mauris fringilla magna, sed consequat mi odio in ante. Etiam quis odio in ante sagittis congue. Duis a ante egestas, pharetra nisl non, lacinia massa. Vestibulum ut mattis enim. Nam scelerisque iaculis sem in lacinia. Phasellus dui dui, pellentesque ac dui ac, rhoncus tempor tellus.` --- <div class="pull-right"> TEXT RIGHT Cras pellentesque, diam ut fringilla luctus, massa mauris fringilla magna, sed consequat mi odio in ante. Etiam quis odio in ante sagittis congue. Duis a ante egestas, pharetra nisl non, lacinia massa. Vestibulum ut mattis enim. Nam scelerisque iaculis sem in lacinia. Phasellus dui dui, pellentesque ac dui ac, rhoncus tempor tellus. </div> TEXT LEFT Cras pellentesque, diam ut fringilla luctus, massa mauris fringilla magna, sed consequat mi odio in ante. Etiam quis odio in ante sagittis congue. Duis a ante egestas, pharetra nisl non, lacinia massa. Vestibulum ut mattis enim. Nam scelerisque iaculis sem in lacinia. Phasellus dui dui, pellentesque ac dui ac, rhoncus tempor tellus. ## <center>You put your text in the center</center> `<center>Text</center>` <center>Text</center> ## <center>Subscript Text</center> `<sub>Text</sub>` <sub> Text </sub> ## <center>Add a Link</center> If you add any link, it will immediately be clickable but if you wish to add a link to a word you can use the below syntax `[Link Title](Link)` `[I am a Link](https://steemit.com/@katerinaramm)` [I am a Link](https://steemit.com/@katerinaramm) ## <center> Blockquotes with > for something that someone has written/said</center> `> I am a quote by someone famous` > I am a quote by someone famous ## <center>Separate your themes - paragraphs with an easy-to-make rule</center> If you use three or more hyphens, asteriscs, or underscores a horizontal rule will be created `--- or *** or ___` ---- ## <center>Adding Code (text in a grey area with possibility of having commands not affecting the text inside)</center> You can check [here](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#code) And I have found it to work in two ways: a. Adding two [back-ticks](https://apple.stackexchange.com/questions/69820/typing-a-backtick-on-mac-os-x-snow-leopard) before and after the markdown syntax `**this is a bold word**` - output - **this is a bold word** or b. you can use `<code>` before and after the command `</code>`at the end of the word/sentence `<code> > goodmorning </code>` output will be >>>>>> > goodmorning ---- # <center>Images</center> In order to add an image all you got to do is (a) have the image :) and (b) drag and drop it in the editor You can put the image in the center by putting the `<center>Image</center>` or you can put it inline with text, on the right or left The order for left is as follows **Attention, you take only the last part of the image > see below** `<div class="pull-left">` `https://steemitimages.com/DQmSCQFPwCSaHawE7fgQtKpidX9yE4tnmjJ5U1P9DamK58M/bb2.jpg` `</div>` `text below` <div class="pull-left"> https://steemitimages.com/DQmSCQFPwCSaHawE7fgQtKpidX9yE4tnmjJ5U1P9DamK58M/bb2.jpg </div> Cras pellentesque, diam ut fringilla luctus, massa mauris fringilla magna, sed consequat mi odio in ante. Etiam quis odio in ante sagittis congue. Duis a ante egestas, pharetra nisl non, lacinia massa. Vestibulum ut mattis enim. Nam scelerisque iaculis sem in lacinia. Phasellus dui dui, pellentesque ac dui ac, rhoncus tempor tellus. `If you would like the image to be alligned to the right simply replace left with right` ## <center>You may also put links to images and align them next to each other - use it in text or in your signature</center> <br> `<center>[](https://steemit.com/@katerinaramm) [](https://twitter.com/katerinaramm1) [](https://www.facebook.com/KaterinaRamm-876468415833984/) [](https://www.instagram.com/katerinaramm1/)</center>` <center>Output</center> <center>[](https://steemit.com/@katerinaramm) [](https://twitter.com/katerinaramm1) [](https://www.facebook.com/KaterinaRamm-876468415833984/) [](https://www.instagram.com/katerinaramm1/)</center> # <center>Insert Gifs</center> You just copy paste the gif's address as below. You may even put the gif in the center, or justify with the `<div class="pull-left">GIF</div>`command `<center>https://media.giphy.com/media/tQcR4ZFWypsA0/giphy.gif</center>` <center>https://media.giphy.com/media/tQcR4ZFWypsA0/giphy.gif</center> # <center>YouTube or DTube Videos</center> You can simply copy paste the DTube or YouTube Link and it will be embedded in the text! https://www.youtube.com/watch?v=N7sW8KikiqM More Links for Markdown [Guide github.com](https://guides.github.com/features/mastering-markdown/) [Markdown Cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) [Emoticons You may use](https://www.webpagefx.com/tools/emoji-cheat-sheet/)  <center>Thank You for visiting! Please comment below and feel free to ask or add if something is useful for you and left out from my side so that I can add it!</center>
author | katerinaramm |
---|---|
permlink | how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit |
category | steemithelp |
json_metadata | {"tags":["steemithelp","steemitguide","markdown","greek-trail","steemit"],"image":["https://steemitimages.com/DQmYsoFQqvzY1Y7cvL14MtTqsKLRrZyVBzvd5fXNRPThYqS/markdown.jpg","https://steemitimages.com/DQmXhu2fo6n6WZkjSH76AUwQWTuTAg62afecPME32GYYoiF/editor.jpg","https://steemitimages.com/DQmSCQFPwCSaHawE7fgQtKpidX9yE4tnmjJ5U1P9DamK58M/bb2.jpg","https://steemitimages.com/DQmPuDai3nhKJTQSdH3GypirCFK3v5pJQR5VM8TNCWc9HgR/steem1.jpg","https://steemitimages.com/DQmPBXyzCxzKDNj9iGLfMMtVNaYGgWg1b36h7XUedX2JWzF/twitter1.jpg","https://steemitimages.com/DQmRo1wZ7Thg8WSH1gVMhG3yXA1wTBMPTdcpMQ6psjBnMUK/facebook1.jpg","https://steemitimages.com/DQmSizippiMhQ9NBVK75NafrgRQM8fXDPn7MBqTCCxKBn1f/instagram1.jpg","https://media.giphy.com/media/tQcR4ZFWypsA0/giphy.gif","https://img.youtube.com/vi/N7sW8KikiqM/0.jpg","https://steemitimages.com/DQmW7MXcPB181iJUm4VBHW1JLdiqUPdme93Luin3oC6Fo9P/233.jpg"],"links":["https://guides.github.com/features/mastering-markdown/","https://steemit.com/steemit/@katerinaramm/deciding-what-to-write-about-researching-synthesis-of-a-blog-post-a-personal-approach-by-katerinaramm-part-1-what-to-post","https://steemit.com/steemit/@katerinaramm/deciding-what-to-write-about-researching-synthesis-of-a-blog-post-a-personal-approach-by-katerinaramm-part-2-researching","https://steemit.com/@katerinaramm","https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#code","https://apple.stackexchange.com/questions/69820/typing-a-backtick-on-mac-os-x-snow-leopard","https://twitter.com/katerinaramm1","https://www.facebook.com/KaterinaRamm-876468415833984/","https://www.instagram.com/katerinaramm1/","https://www.youtube.com/watch?v=N7sW8KikiqM","https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet","https://www.webpagefx.com/tools/emoji-cheat-sheet/"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-02-23 16:54:33 |
last_update | 2018-02-25 07:16:18 |
depth | 0 |
children | 42 |
last_payout | 2018-03-02 16:54:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 30.962 HBD |
curator_payout_value | 9.917 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9,912 |
author_reputation | 688,826,842,332,638 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,911,350 |
net_rshares | 7,589,940,966,613 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
erath | 0 | 25,434,426,202 | 100% | ||
hr1 | 0 | 51,620,059,080 | 0.02% | ||
friend5 | 0 | 347,383,307,370 | 100% | ||
twiceuponatime | 0 | 171,023,344,716 | 100% | ||
indominon | 0 | 7,404,943,055 | 100% | ||
onceuponatime | 0 | 5,355,558,966,967 | 100% | ||
marginal | 0 | 21,656,555,833 | 100% | ||
vault | 0 | 224,709,815,321 | 100% | ||
eric-boucher | 0 | 284,221,319,485 | 100% | ||
skapaneas | 0 | 58,952,746,575 | 29% | ||
rouketas | 0 | 17,879,298,265 | 30% | ||
holidaygreece | 0 | 1,317,168,770 | 100% | ||
avtzis.petros | 0 | 46,674,111,391 | 100% | ||
sift666 | 0 | 0 | 1% | ||
rebeccaryan | 0 | 499,456,370,024 | 100% | ||
koskl | 0 | 4,191,782,245 | 100% | ||
aumsong | 0 | 1,577,790,953 | 100% | ||
filotasriza3 | 0 | 6,619,529,620 | 12% | ||
evimeria | 0 | 4,445,431,340 | 100% | ||
lordneroo | 0 | 7,380,301,147 | 100% | ||
papadimos | 0 | 26,532,163,449 | 100% | ||
greek-trail | 0 | 10,612,281,153 | 30% | ||
greeksteemjesus | 0 | 5,931,189,593 | 30% | ||
mariossap | 0 | 3,611,675,067 | 100% | ||
trumpman | 0 | 9,642,115,407 | 9% | ||
alexander.alexis | 0 | 679,355,741 | 3% | ||
ruth-girl | 0 | 21,945,136,026 | 15% | ||
bubke | 0 | 223,651,332,887 | 100% | ||
giosou | 0 | 3,946,802,274 | 30% | ||
nikoleondas | 0 | 8,309,882,589 | 100% | ||
warrkin | 0 | 8,339,717,246 | 100% | ||
followforupvotes | 0 | 2,275,485,581 | 8% | ||
iliasdiamantis | 0 | 20,166,660,608 | 15% | ||
artgalleryraka | 0 | 5,452,966,493 | 45% | ||
emmamia | 0 | 36,596,564,470 | 26% | ||
onart | 0 | 2,920,010,172 | 25% | ||
grace44 | 0 | 2,869,870,697 | 100% | ||
karinxxl | 0 | 5,335,392,554 | 30% | ||
masscollective | 0 | 1,102,072,208 | 100% | ||
annadeda | 0 | 9,015,037,466 | 49% | ||
nikosnitza | 0 | 464,468,115 | 100% | ||
thatanimesnob | 0 | 541,014,636 | 100% | ||
alexanderfluke | 0 | 7,084,656,617 | 10% | ||
anarchojeweler | 0 | 1,659,045,720 | 100% | ||
shimster | 0 | 567,130,016 | 100% | ||
upvoteforfree | 0 | 297,294,230 | 100% | ||
raefbelguith | 0 | 494,935,749 | 100% | ||
dexterdev | 0 | 663,513,901 | 100% | ||
tkappa | 0 | 16,375,679,238 | 100% | ||
eliakon | 0 | 4,749,582,586 | 100% | ||
alinak15 | 0 | 2,821,764,921 | 100% | ||
leesim | 0 | 485,789,677 | 100% | ||
shreek77 | 0 | 498,726,662 | 100% | ||
irmeyhamidi | 0 | 589,400,154 | 100% | ||
andrianmaulana61 | 0 | 301,395,551 | 100% | ||
creepyturtle | 0 | 441,401,658 | 100% | ||
evagreca | 0 | 565,460,829 | 100% | ||
musicoplanetario | 0 | 329,446,480 | 100% | ||
beveryting | 0 | 2,793,508,816 | 10% | ||
ravindra09 | 0 | 95,241,695 | 100% | ||
samuelmorayo | 0 | 605,237,836 | 100% | ||
macesen | 0 | 1,073,291,486 | 100% | ||
newsbreaker | 0 | 0 | 100% |
Thank you @katerinaramm, VERY helpful post 😉!!!
author | alinak15 |
---|---|
permlink | re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180223t191325468z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"users":["katerinaramm"],"app":"steemit/0.1"} |
created | 2018-02-23 19:13:33 |
last_update | 2018-02-23 19:13:33 |
depth | 1 |
children | 1 |
last_payout | 2018-03-02 19:13:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 10,228,393,279,046 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,937,126 |
net_rshares | 4,728,920,884 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
katerinaramm | 0 | 4,728,920,884 | 30% |
Ευχαριστώ Αλίνα :)
author | katerinaramm |
---|---|
permlink | re-alinak15-re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180224t062146998z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-24 06:21:48 |
last_update | 2018-02-24 06:21:48 |
depth | 2 |
children | 0 |
last_payout | 2018-03-03 06:21:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 688,826,842,332,638 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,020,880 |
net_rshares | 0 |
Κατερίνα όπως πάντα ουσιαστική έχεις ένα προσόν αξεπέραστο. Μπράβο σου.
author | artgalleryraka |
---|---|
permlink | re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180223t192800695z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-23 19:28:00 |
last_update | 2018-02-23 19:28:00 |
depth | 1 |
children | 1 |
last_payout | 2018-03-02 19:28:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.041 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 20,646,232,381,276 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,939,710 |
net_rshares | 9,296,095,238 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
artgalleryraka | 0 | 4,567,174,354 | 45% | ||
katerinaramm | 0 | 4,728,920,884 | 30% |
Ευχαριστώ θερμά για το σχόλιό σου :)
author | katerinaramm |
---|---|
permlink | re-artgalleryraka-re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180224t062207906z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-24 06:22:09 |
last_update | 2018-02-24 06:22:09 |
depth | 2 |
children | 0 |
last_payout | 2018-03-03 06:22:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 36 |
author_reputation | 688,826,842,332,638 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,020,942 |
net_rshares | 0 |
I will be using this for a resource. Thanks!
author | aumsong |
---|---|
permlink | re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180223t211000075z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-23 21:10:03 |
last_update | 2018-02-23 21:10:03 |
depth | 1 |
children | 1 |
last_payout | 2018-03-02 21:10:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 44 |
author_reputation | 4,947,084,318,869 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,957,511 |
net_rshares | 4,728,920,884 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
katerinaramm | 0 | 4,728,920,884 | 30% |
Thank you! Please let me know if there is something else I have left out!
author | katerinaramm |
---|---|
permlink | re-aumsong-re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180224t064817599z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-24 06:48:21 |
last_update | 2018-02-24 06:48:21 |
depth | 2 |
children | 0 |
last_payout | 2018-03-03 06:48:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 73 |
author_reputation | 688,826,842,332,638 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,025,432 |
net_rshares | 0 |
Cool, i am commenting to find this beautiful post back when needed, following for more, thanks. I have one question left, how did you put <div, ** etc without effect? The samples with the light gray background.
author | bubke |
---|---|
permlink | re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180225t033341199z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-25 03:33:45 |
last_update | 2018-02-25 03:33:45 |
depth | 1 |
children | 1 |
last_payout | 2018-03-04 03:33:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.542 HBD |
curator_payout_value | 0.173 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 211 |
author_reputation | 9,285,631,006,103 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,240,077 |
net_rshares | 132,064,660,727 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gentlesoul | 0 | 126,250,819,143 | 100% | ||
katerinaramm | 0 | 5,813,841,584 | 39% |
Hi bubke, thank you so much for asking .. I will edit the post and update this. Actually I was thinking that this one was missing, so it is a good opportunity to add it! You can check [here](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#code) And I have found it to work in two ways: a. Adding two [back-ticks](https://apple.stackexchange.com/questions/69820/typing-a-backtick-on-mac-os-x-snow-leopard) before and after the markdown syntax `**this is a bold word**` - output - **this is a bold word** or b. you can use `<code>` before and after the command `</code>` at the end `<code> > goodmorning </code>` output will be >>>>>> > goodmorning Thanks again and all the best!
author | katerinaramm |
---|---|
permlink | re-bubke-re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180225t070934090z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"links":["https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#code","https://apple.stackexchange.com/questions/69820/typing-a-backtick-on-mac-os-x-snow-leopard"],"app":"steemit/0.1"} |
created | 2018-02-25 07:09:33 |
last_update | 2018-02-25 07:12:15 |
depth | 2 |
children | 0 |
last_payout | 2018-03-04 07:09:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 703 |
author_reputation | 688,826,842,332,638 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,272,918 |
net_rshares | 0 |
This is very helpful, thanks @katerinaramm
author | emperorhassy |
---|---|
permlink | re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180615t062633335z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"users":["katerinaramm"],"app":"steemit/0.1"} |
created | 2018-06-15 06:26:36 |
last_update | 2018-06-15 06:26:36 |
depth | 1 |
children | 0 |
last_payout | 2018-06-22 06:26:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 47,168,587,998,209 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 60,819,303 |
net_rshares | 14,910,817,223 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
katerinaramm | 0 | 14,910,817,223 | 48% |
This is an extremely good and resourceful article many will learn from, even the seasoned veterans of the Steemian world! Thank you so very much for such a clear and straightforward to educational post. It is very much appreciated and will upvote, resteem and share this one. Namaste :)
author | eric-boucher |
---|---|
permlink | re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180223t235231399z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-23 23:52:30 |
last_update | 2018-02-23 23:52:30 |
depth | 1 |
children | 2 |
last_payout | 2018-03-02 23:52:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.087 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 290 |
author_reputation | 68,503,601,066,539 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,981,275 |
net_rshares | 17,005,351,194 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eric-boucher | 0 | 11,600,870,183 | 4% | ||
katerinaramm | 0 | 5,404,481,011 | 33% |
Thank You Eric for enjoying it :) I had to search for somethings every time, so I though I should include everything I use in one post (for my and possible other peoples' convenience) Have a great weekend!
author | katerinaramm |
---|---|
permlink | re-eric-boucher-re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180224t060834149z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-24 06:08:36 |
last_update | 2018-02-24 06:08:36 |
depth | 2 |
children | 1 |
last_payout | 2018-03-03 06:08:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.038 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 205 |
author_reputation | 688,826,842,332,638 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,018,751 |
net_rshares | 9,668,874,394 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eric-boucher | 0 | 9,668,874,394 | 3% |
Definitely for everyone's convenience and pleasure, efficiency and peace of mind! Thanks again @katerinaramm! Namaste :)
author | eric-boucher |
---|---|
permlink | re-katerinaramm-re-eric-boucher-re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180225t005112215z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"users":["katerinaramm"],"app":"steemit/0.1"} |
created | 2018-02-25 00:51:12 |
last_update | 2018-02-25 00:51:12 |
depth | 3 |
children | 0 |
last_payout | 2018-03-04 00:51:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.038 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 124 |
author_reputation | 68,503,601,066,539 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,214,420 |
net_rshares | 7,735,099,515 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eric-boucher | 0 | 7,735,099,515 | 2% |
As a follower of @followforupvotes this post has been randomly selected and upvoted! Enjoy your upvote and have a great day!
author | followforupvotes |
---|---|
permlink | re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180224t055718888z |
category | steemithelp |
json_metadata | "" |
created | 2018-02-24 05:57:21 |
last_update | 2018-02-24 05:57:21 |
depth | 1 |
children | 0 |
last_payout | 2018-03-03 05:57:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 124 |
author_reputation | 24,665,782,446,239 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,016,849 |
net_rshares | 0 |
Γεια σου Κατερίνα . Σήμερα αξιώθηκα να το διαβάσω..Πραγματικά έχω έλλειψη χρόνου. Το έβαλα στη λίστα με τα αγαπημένα μου που αφορούν το steemit γιατί θα με βοηθάει στη σύνταξη μιας και με τις 'εντολές' δυσκολευόμουν.. Αν έχεις και κάποια συμβουλή για διαμόρφωση μεγέθους φωτογραφίας θα ήταν επίσης χρήσιμη. Ευχαριστώ θερμά . Καλή συνέχεια.
author | giosou |
---|---|
permlink | re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180226t080358012z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-02-26 04:05:33 |
last_update | 2018-02-26 04:05:33 |
depth | 1 |
children | 6 |
last_payout | 2018-03-05 04:05:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.023 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 339 |
author_reputation | 16,130,137,939,141 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,493,776 |
net_rshares | 5,437,470,295 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
katerinaramm | 0 | 5,437,470,295 | 34% |
Γεια σου και ευχαριστώ θερμά για το σχόλιό σου! Δυστυχώς για αλλαγές στο μέγεθος φωτογραφίας δεν υπάρχει τίποτα, μπορείς μόνο να επέμβεις πριν να εισάγεις τη φωτογραφία στη δημοσίευση. Μήπως όμως εννοείς κάτι άλλο; Αν θέλεις δώσε μου ένα παράδειγμα του τι θα ήθελες να κάνεις για να βρούμε λύση και αν χρειάζεται να το προσθέσουμε στον οδηγό. Μέχρι τώρα έχω κάνει 3 προσθήκες στο αρχικό κείμενο λόγω ερωτήσεων που μου έκαναν :) και έχω περιθώριο για αλλαγές άλλες 4 ημέρες μέχρι το payout
author | katerinaramm |
---|---|
permlink | re-giosou-re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180226t064426910z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-26 06:44:27 |
last_update | 2018-02-26 06:44:27 |
depth | 2 |
children | 5 |
last_payout | 2018-03-05 06:44:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 489 |
author_reputation | 688,826,842,332,638 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,521,054 |
net_rshares | 0 |
Εννοώ αν μπορείς να κάνεις κάποια προσθήκη π.χ. 600χ400 ,στον αλγόριθμο που βγάζει όταν εισάγεις φωτογραφία ώστε να αλλάξεις το μέγεθός της . Σε ευχαριστώ για το χρόνο σου .
author | giosou |
---|---|
permlink | re-katerinaramm-re-giosou-re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180227t004559178z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-26 20:47:39 |
last_update | 2018-02-26 20:47:39 |
depth | 3 |
children | 4 |
last_payout | 2018-03-05 20:47:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 175 |
author_reputation | 16,130,137,939,141 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,689,409 |
net_rshares | 2,720,038,800 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
katerinaramm | 0 | 2,720,038,800 | 21% |
OMG, this is so helpful! I just edited my [getting started on steemit](https://steemit.com/steemit/@indigoocean/getting-started-on-steemit-a-step-by-step-guide-for-newbies) post to point to this markdown post instead of the other one! Thanks for bringing it to my attention.
author | indigoocean |
---|---|
permlink | re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180228t183944316z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"links":["https://steemit.com/steemit/@indigoocean/getting-started-on-steemit-a-step-by-step-guide-for-newbies"],"app":"steemit/0.1"} |
created | 2018-02-28 18:39:45 |
last_update | 2018-02-28 18:39:45 |
depth | 1 |
children | 1 |
last_payout | 2018-03-07 18:39:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 274 |
author_reputation | 83,283,947,872,393 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,191,528 |
net_rshares | 8,671,843,140 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
katerinaramm | 0 | 8,671,843,140 | 60% |
Your guide is fantastic, I have shared it already with someone who is on their way to steemit (just waiting the activation)! It shows that you took a great amount of time to research and put everything together. There is so much to learn here, I am always surprised with what's going on and all the new things. I just need more time : ) Thank you again, you are doing great here! Keep it up!
author | katerinaramm |
---|---|
permlink | re-indigoocean-re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180301t064126860z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-03-01 06:41:33 |
last_update | 2018-03-01 06:41:33 |
depth | 2 |
children | 0 |
last_payout | 2018-03-08 06:41:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 392 |
author_reputation | 688,826,842,332,638 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,308,933 |
net_rshares | 2,073,647,853 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
indigoocean | 0 | 2,073,647,853 | 100% |
This is super duper clear and deserves a resteem! Good going madame!
author | karinxxl |
---|---|
permlink | re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180225t013041534z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-25 01:30:42 |
last_update | 2018-02-25 01:30:42 |
depth | 1 |
children | 1 |
last_payout | 2018-03-04 01:30:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 464,979,590,683,657 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,220,569 |
net_rshares | 5,813,841,584 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
katerinaramm | 0 | 5,813,841,584 | 39% |
Thank you so much, it is dearly appreciated :)
author | katerinaramm |
---|---|
permlink | re-karinxxl-re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180225t065200167z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-25 06:52:00 |
last_update | 2018-02-25 06:52:00 |
depth | 2 |
children | 0 |
last_payout | 2018-03-04 06:52:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 688,826,842,332,638 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,270,120 |
net_rshares | 0 |
Just discovered a goldmine here :) A very educational and resourceful post, thanks for sharing and keep it up dear.
author | leesim |
---|---|
permlink | re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180224t160410204z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-24 16:04:36 |
last_update | 2018-02-24 16:04:36 |
depth | 1 |
children | 0 |
last_payout | 2018-03-03 16:04:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 115 |
author_reputation | 6,722,644,992 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,124,877 |
net_rshares | 5,001,171,318 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
katerinaramm | 0 | 5,001,171,318 | 39% |
Helpful information all around! A lot of things I didn’t know about
author | masscollective | ||||||
---|---|---|---|---|---|---|---|
permlink | re-katerinaramm-2018223t174359808z | ||||||
category | steemithelp | ||||||
json_metadata | {"tags":["steemithelp","steemitguide","markdown","greek-trail","help"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-24 01:44:03 | ||||||
last_update | 2018-02-24 01:44:03 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-03-03 01:44:03 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.026 HBD | ||||||
curator_payout_value | 0.003 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 67 | ||||||
author_reputation | 505,127,324,087 | ||||||
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 39,994,986 | ||||||
net_rshares | 5,798,341,096 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
katerinaramm | 0 | 4,593,808,859 | 30% | ||
masscollective | 0 | 1,204,532,237 | 100% |
Thank you for the advice and illustrative examples. I didn't know that. I think this post will be useful for many users
author | naditinkoff |
---|---|
permlink | re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180224t075002744z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-24 07:50:03 |
last_update | 2018-02-24 07:50:03 |
depth | 1 |
children | 0 |
last_payout | 2018-03-03 07:50:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 119 |
author_reputation | 6,983,786,242,499 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,035,909 |
net_rshares | 3,378,158,260 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
katerinaramm | 0 | 3,378,158,260 | 27% |
Μπράβο Κατερίνα πολύ χρήσιμο άρθρο!
author | nikoleondas |
---|---|
permlink | re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180223t204738166z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-23 20:47:42 |
last_update | 2018-02-23 20:47:42 |
depth | 1 |
children | 1 |
last_payout | 2018-03-02 20:47:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 27,371,976,735,551 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,953,681 |
net_rshares | 4,728,920,884 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
katerinaramm | 0 | 4,728,920,884 | 30% |
Ευχαριστώ :) 🌞🌞
author | katerinaramm |
---|---|
permlink | re-nikoleondas-re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180224t062622367z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-24 06:26:24 |
last_update | 2018-02-24 06:26:24 |
depth | 2 |
children | 0 |
last_payout | 2018-03-03 06:26:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 688,826,842,332,638 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,021,653 |
net_rshares | 0 |
Thanks for sharing that with us
author | raefbelguith |
---|---|
permlink | re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180223t221530294z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-23 22:15:30 |
last_update | 2018-02-23 22:15:30 |
depth | 1 |
children | 1 |
last_payout | 2018-03-02 22:15:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 332,172,690,928 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,967,679 |
net_rshares | 4,728,920,884 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
katerinaramm | 0 | 4,728,920,884 | 30% |
I am happy and sharing with the hope it will be useful for everyone :)
author | katerinaramm |
---|---|
permlink | re-raefbelguith-re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180224t064851766z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-24 06:48:54 |
last_update | 2018-02-24 06:48:54 |
depth | 2 |
children | 0 |
last_payout | 2018-03-03 06:48:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 688,826,842,332,638 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,025,518 |
net_rshares | 0 |
Great job @katerinaramm!
author | rebeccaryan |
---|---|
permlink | re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180224t005118114z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"users":["katerinaramm"],"app":"steemit/0.1"} |
created | 2018-02-24 00:51:57 |
last_update | 2018-02-24 00:51:57 |
depth | 1 |
children | 1 |
last_payout | 2018-03-03 00:51:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 77,990,144,956,239 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,988,059 |
net_rshares | 4,593,808,859 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
katerinaramm | 0 | 4,593,808,859 | 30% |
Thank you Rebecca :) I appreciate you visiting my blog 💙
author | katerinaramm |
---|---|
permlink | re-rebeccaryan-re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180224t065417907z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-24 06:54:21 |
last_update | 2018-02-24 06:54:21 |
depth | 2 |
children | 0 |
last_payout | 2018-03-03 06:54:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 56 |
author_reputation | 688,826,842,332,638 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,026,461 |
net_rshares | 0 |
Beautiful. You made it easier for many people who are confused about how to post properly. Thank you for your kind help.
author | rinki |
---|---|
permlink | re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180224t062016450z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-24 06:20:18 |
last_update | 2018-02-24 06:20:18 |
depth | 1 |
children | 0 |
last_payout | 2018-03-03 06:20:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 120 |
author_reputation | 1,071,223,542,624 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,020,619 |
net_rshares | 3,107,576,581 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
katerinaramm | 0 | 3,107,576,581 | 22% |
Exceptionally useful post. Bravo Katerina! PS. Μολις συνηδειτοποιησα οτι σε ειχα κανει unfollow (μαλλον μεσω κινητου που παταω οτι να'ναι) για αυτο και δεν εβρισκα τα post σου τελευταια. Εκανα follow ξανα! Ελπιζω να μην μου εχεις θυμωσει ;)
author | tkappa |
---|---|
permlink | re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180223t185847823z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-23 18:58:48 |
last_update | 2018-02-23 18:59:09 |
depth | 1 |
children | 3 |
last_payout | 2018-03-02 18:58:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 241 |
author_reputation | 38,189,708,545,621 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,934,283 |
net_rshares | 7,566,273,415 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
katerinaramm | 0 | 7,566,273,415 | 47% |
Εννοείται ότι σου θύμωσα, σε έκανα κι εγώ unfollow και είδα πριν ότι πέραν του unfollow μου έκανες και μιουτ!! Ατιμη Τζίνα, τίποτα δε σου ξεφεύγει! χαχαχαχα Νόμιζα ότι είχε γίνει εσκεμμένα και σε είχα κάνει κι εγώ unfollow .. Τώρα θα σε κάνω follow αφού πρώτα σε κάνω μιουτ και ανμιουτ... Είμαι Τοξότης, δεν ξεχνάω :P Ευχαριστώ πολύ :)
author | katerinaramm |
---|---|
permlink | re-tkappa-re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180224t061336909z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-24 06:13:39 |
last_update | 2018-02-24 06:13:39 |
depth | 2 |
children | 2 |
last_payout | 2018-03-03 06:13:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.070 HBD |
curator_payout_value | 0.022 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 336 |
author_reputation | 688,826,842,332,638 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,019,565 |
net_rshares | 17,843,843,583 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tkappa | 0 | 17,843,843,583 | 100% |
Κλαιω 😂😂😂😂 Εχει παθει το ιδιο και η Ρουθ αλλα ακομα και η αδερφη μου, πιστεψε με δεν γινεται εσκεμμενα. Στο Filota αντι για "Αγαπω το αρθρο" ειχα γραψει σε "γα$$"...Μαλλον πρεπει να σταματησω να μπαινω απο το κινητο 😂😂😂
author | tkappa |
---|---|
permlink | re-katerinaramm-re-tkappa-re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180224t074454768z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-24 07:44:57 |
last_update | 2018-02-24 07:44:57 |
depth | 3 |
children | 1 |
last_payout | 2018-03-03 07:44:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.041 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 221 |
author_reputation | 38,189,708,545,621 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,035,117 |
net_rshares | 7,972,453,495 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
katerinaramm | 0 | 7,972,453,495 | 62% |
παει to vp μου πέθανε, θα το αφησω σκ να ξεκουραστει, έφερα το δεύτερο λογαριασμό να βοηθήσει λιγο XD
author | trumpman |
---|---|
permlink | re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180223t172836223z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-23 17:28:36 |
last_update | 2018-02-23 17:28:36 |
depth | 1 |
children | 2 |
last_payout | 2018-03-02 17:28:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 102 |
author_reputation | 2,476,900,060,410,261 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,917,784 |
net_rshares | 5,404,481,011 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
katerinaramm | 0 | 5,404,481,011 | 33% |
Μιλάς κι εσύ για το VP σου που είναι στο 60-70 .. Το δικό μου καταφέρνω και φτάνει 40 και έχω δει κι έναν κοινό μας φίλο που όλο στον 9 τον βρίσκω :P Καλό ΣΚ φίλε μου
author | katerinaramm |
---|---|
permlink | re-trumpman-re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180224t061910285z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-24 06:19:12 |
last_update | 2018-02-24 06:19:12 |
depth | 2 |
children | 1 |
last_payout | 2018-03-03 06:19:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 167 |
author_reputation | 688,826,842,332,638 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,020,445 |
net_rshares | 0 |
Για αυτό το ξεκουράζω γιατί αλλιώς θα πάει στο 40 και μετα στο 0 😂😂🤣🤣
author | trumpman |
---|---|
permlink | re-katerinaramm-re-trumpman-re-katerinaramm-how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit-20180224t113725516z |
category | steemithelp |
json_metadata | {"tags":["steemithelp"],"app":"steemit/0.1"} |
created | 2018-02-24 11:37:27 |
last_update | 2018-02-24 11:37:48 |
depth | 3 |
children | 0 |
last_payout | 2018-03-03 11:37:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 69 |
author_reputation | 2,476,900,060,410,261 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,074,098 |
net_rshares | 5,270,006,585 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
katerinaramm | 0 | 5,270,006,585 | 41% |
This post received a free Upvote. Get your free Upvote NOW! Just follow @upvoteforfree
author | upvoteforfree |
---|---|
permlink | how-to-use-mark-down-style-for-an-appealing-easy-to-read-post-in-steemit2018-02-23 |
category | steemithelp |
json_metadata | {"tags":[""],"app":"steemjs/freeupvote"} |
created | 2018-02-23 17:28:54 |
last_update | 2018-02-23 17:28:54 |
depth | 1 |
children | 0 |
last_payout | 2018-03-02 17:28:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 1,939,089,233,537 |
root_title | "How to Use Mark Down Style for an Appealing – Easy to Read Post in Steemit." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,917,833 |
net_rshares | -3,722,530,349 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mack-bot | 0 | -3,467,148,460 | -0.02% | ||
quarry | 0 | -255,381,889 | -1% |