<h4> <p>This guide is meant to be a quick reference on how to properly format your posts on Steemit using HTML markup.</p> <p>The reason I prefer to use HTML markup directly is because this gives a <b>Preview window</b> below the text editor. Preview mode is updated in realtime so you can view any changes and how the page will display immediately.</p> https://il8.picdn.net/shutterstock/videos/4135444/thumb/1.jpg <p><br></p> <p>The other reason is when you are using the HTML markup tag <code> switching between <b>Editor-</b> and <b>Markdown-mode</b> adds a extra newline between <i>every</i> code line inside the code markup <i>every</i> time you switch view, which has to be manually deleted.</p> </h4> <h6> <p>Editing text in Editor-mode is much like using a text editor such as Word, with all the options on the menu line right below the titlefield. </p> </h6> <p><h2>Selecting Markdown mode</h2></p> <h6> <p>When you have pressed <b>Submit a Story</b> in the top right corner to start a new blog post, you have to press the text that says <b>Editor</b> just below the titlefield on the right side <i>before</i> entering any text in the main editor window.</p> <p>Just copy all the text in the editor window (keyboard shortcut <b>ctrl + a</b>, then <b>ctrl + x</b>) if you have started a post and want to switch modes, then paste (<b>ctrl + v</b>) the text back in when you have switched.</p> <p>Markdown mode automatically adds the standard HTML tags, like <b><!DOCTYPE html></b>, <b><html></b> and <b><body></b> for you, so you only have to focus on formatting the text you enter yourself.</p> <p>You can add the page title and still change modes though.</p> </h6> <p><h2>Quick reference to markup</h2></p> <h6> <p>To add a <b>heading</b> to your post you use the code tag <b><h1></b> up to <b><h6>:</b></p> <p><h1>Headline with h1</h1></p> <h6> <p>To write this up with HTML markup you write: </p> <pre><code><h1> Headline with h1 </h1> </code></pre> <p><br></p> <p>The same goes for all headings shown below; begin with the starting tag and end with the closing tag.</p> </h6> <p><h2>Headline with h2</h2></p> <p><h3>Headline with h3</h3></p> <p><h4>Headline with h4</h4></p> <p><h5>Headline with h5</h5></p> <p><h6>Headline with h6</h6></p> <p><h2>Adding images</h2></p> <h6> <p>To add an image to your post you can simply paste the direct link into your post.</p> <pre><code>direct-link-to-example-image.jpg </code></pre> <p><br></p> <p>You can position your images in the center with the following syntax: </p> <pre><code><center> direct-link-to-example-image.jpg </center> </code></pre> <p><br></p> <p>Or you can position your image to the left / right of the surronding text with the following syntax:</p> <pre><code><div class="pull-left"> <img src="direct-link-to-example-image.jpg" /> </div> </code></pre> <p><br></p> <p>Substitute <b>left</b> with <b>right</b> to position the image the on other side, and replace the <i>direct-link-to-example-image.jpg</i> with a direct link to the image you want to use. Also notice the code tag for images, which could be used in all the previous examples, and its /> closing tag in <code><img src="" /></code>. </p> </h6> <p><h2>Formatting text</h2></p> <h4> <p>Always use the paragraph <code><p></p></code> tags to wrap any other tag inside, even the headings <code><p><h2> Heading example </h2></p></code> or adding a new line <code><p><br></p>.</code></p> </h4> <h6> <p>You add a new line with the tag <code><br></p></code>, by the way. There is no need to use closing tags on it, so don't worry about <code><del></br></del></code>. This is the syntax for a strike through line of a portion of the text:<br> <code><del> word(s) to be striken </del></code>.</p> <p>You get <i>italic</i> text with <code><i> italic-text </i></code>, and <b>bold</b> text with <code><b> bold-text </b></code>.</p> <p>You can also add a quote like: </p> <blockquote>Upvote and follow!<br><center>--- @Jonrhythmic</center></blockquote> <p>Use the code tags <code><blockquote> your-quote-here </blockquote></code>.</p> <p>To add a horizontal line, use <code><hr></code>: <hr> </h6> <p><h2>Code markdown</h2></p> <h6> <p>To write up a code sample in the middle of a sentence like <code>this</code> you place the text inside the <code>-tag and end with closing tag </code>.</p> <p>If you want to write a whole segment of code like:</p> <pre><code>Example computer code here </code> </pre><br> <p>You need to wrap the code inside the following tags:</p> <p><pre><code><pre><code> Example computer code here<br></code></pre> </code></pre></p> <p>Notice that the markup is <b><pre></b> then <b><code></b>, but closes <b></code></b> then <b></pre>!</b></p> </h6> <p><h2>Lists</h2></p> <h6> <p>Steemit offers two types of lists; <b>ordered lists:</b> </p> <pre><code><ol> <li>First item</li> <li>Second item</li> </ol> </code></pre> <p> <ol> <li>First item</li> <li>Second item</li> </ol> </p> <p>and;</h6> <b>unordered lists:</b> </p> <pre><code><ul> <li>First item</li> <li>Second item</li> </ul> </code></pre> <p> <ul> <li>First item</li> <li>Second item</li> </ul> </p> </h6> <p><h2>Hyperlinks</h2></p> <h6> <p>To generate a hyperlink you could either paste the link directly into your post like: </p> <pre><code>http://example-link.com/ </code></pre> <p><br></p> <p>Or by adding the correct markup, including a hyperlink text: </p> <pre><code><a href="http://example-link.com/"> Link name </a> </code></pre> <p><br></p> <p>Which looks like this: <a href="https://steemit.com/steemit/@jonrhythmic/formatting-your-steemit-posts-using-html-markup-text-formatting-guide"> Link name </a></p> <p>You can also use images as hyperlink by with the following syntax:</p> <pre><code><a href="hyperlink destination"><img src="address to img to use as link"/></a> </code></pre> <p><br></p> <p>Which gives hyperlinks like this one:</p> <a href="https://steemit.com/@jonrhythmic"><img src="http://grennesstein.xyz/img/jonrhythmic_pico8.png"/></a> <p>Try linking to your HD images with this markup using preview thumbnail images on Steemit with 800x480 resolution.</p> </h6> <p><h2>Tables</h2></p> <h6> <p>The proper way to generate a table is by using the standard HTML markup. Begin the table content with <b><table></b> and end it with <b></table></b>. Each table row needs to be placed inside a <b><tr></b> and <b></tr></b> and any field inside it has to be put inside a table heading:</p> <p><b><th></b> Variable 1 <b></th><th></b> Variable 2 <b></th></b></p><p>Subsequent lines should be placed in table data:</p> <p><b><td></b> Value 1 <b></td><td></b> Value 2 <b></td></b>.</p> <p>The markup should look like this: </p> <pre><code><table> <tr> <th>Variable 1</th><th>Variable 2</th> </tr> <tr> <td>Value 1</td><td>Value 2</td> </tr> </table> </code></pre> <p><br></p> <p>And should display like this:</p> <p><table><tr><th><div class="pull-left">Variable 1</div> </th><th><div class="pull-left">Variable 2</div></th></tr> <tr><td> Value 1</td><td> Value 2</td> </tr></table> </p> <p><b>Note:</b> I used text aligning inside the table heading to get the text to align to the left:</p> <code> <table><tr><th> <b><div class="pull-left"></b> Variable 1 <b></div></b> </th><th><b> <div class="pull-left"></b> Variable 2 </div> <b> </div></b> </th></tr></table></code> </h6> <p><h2>Adding emojis</h2></p> <h6> <p>One final thing; it's possible to add <b>emojis</b> to your post. 😋 </p> <p>Take a look at master list 1 & 2 in the links below: </p> </h6> <ul> <li>https://steemit.com/emojis/@blueorgy/steemit-emojis-master-list</li> <li>https://steemit.com/emojis/@blueorgy/steemit-emojis-master-list-2</li> </ul> <p><h2>Important lessons </h2></p> <h6> <p>Leaving a tag that requires a closing tag unclosed normally causes the rest of the document to display incorrectly. If your post looks weird in the preview window just look through all tag markups for any unclosed tags.</p> <p>HTML doesn't display some special chars, like <b><</b> (short for less than; written & lt ; without spacing), <b>></b> (short for greater than; written & gt ;), <b>#</b> (written & # 35 ;) or even <b> </b> (space; written & nbsp ;) properly. In fact the parser would probably just skip past all the text from where it encounters a special character until it encounter another ending tag, and not display any of the text inbetween.</p> <p>For a full list of special characters, and the markup code to use, take a look at the following list: http://www.ascii.cl/htmlcodes.htm</p> </p> </h6> <hr> <p>That is all you need to know. Hope this helps and steem on!<br><br> Don't forget to follow me @jonrhythmic</p>
author | jonrhythmic |
---|---|
permlink | formatting-your-steemit-posts-using-html-markup-text-formatting-guide |
category | steemit |
json_metadata | {"tags":["steemit","howto","markdown","tutorial"],"users":["jonrhythmic"],"image":["https://il8.picdn.net/shutterstock/videos/4135444/thumb/1.jpg","http://grennesstein.xyz/img/jonrhythmic_pico8.png"],"links":["https://steemit.com/steemit/@jonrhythmic/formatting-your-steemit-posts-using-html-markup-text-formatting-guide","https://steemit.com/@jonrhythmic","https://steemit.com/emojis/@blueorgy/steemit-emojis-master-list","https://steemit.com/emojis/@blueorgy/steemit-emojis-master-list-2","http://www.ascii.cl/htmlcodes.htm"],"app":"steemit/0.1","format":"markdown"} |
created | 2017-07-27 01:01:39 |
last_update | 2017-07-31 22:25:09 |
depth | 0 |
children | 15 |
last_payout | 2017-08-03 01:01:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.719 HBD |
curator_payout_value | 0.211 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9,514 |
author_reputation | 1,019,034,040,422 |
root_title | "🈪 Formatting your Steemit posts using HTML markup" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,856,086 |
net_rshares | 260,009,085,077 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pharesim | 0 | 103,451,050,122 | 0.02% | ||
gandalf | 0 | 5,144,829,764 | 0.3% | ||
kevinwong | 0 | 29,290,666,734 | 0.1% | ||
ubg | 0 | 204,195,051 | 1% | ||
liberosist | 0 | 72,711,718,182 | 1% | ||
arconite | 0 | 237,846,130 | 0.2% | ||
dunia | 0 | 18,084,488,291 | 1% | ||
steemitboard | 0 | 122,130,212 | 1% | ||
jhelbich | 0 | 551,575,554 | 5% | ||
cyclope | 0 | 239,955,491 | 5% | ||
misterbitcoin | 0 | 1,011,120,968 | 100% | ||
jznsamuel | 0 | 364,675,766 | 0.1% | ||
shae-meyer | 0 | 7,339,955,784 | 100% | ||
coinkingz | 0 | 6,866,483,821 | 100% | ||
burnedpixel | 0 | 152,290,429 | 0.2% | ||
locikll | 0 | 624,966,905 | 0.4% | ||
monkonacid | 0 | 0 | 100% | ||
pastbastard | 0 | 450,014,359 | 100% | ||
rizalmaulana | 0 | 1,414,796,626 | 100% | ||
ananiani | 0 | 163,411,325 | 1% | ||
fates | 0 | 1,131,803,440 | 100% | ||
woz.software | 0 | 1,243,247,332 | 100% | ||
mandrea | 0 | 1,163,405,887 | 100% | ||
jonrhythmic | 0 | 2,726,684,804 | 100% | ||
charline | 0 | 951,752,715 | 100% | ||
drt | 0 | 235,382,056 | 100% | ||
pockahoxel | 0 | 1,160,670,025 | 100% | ||
loosetooth | 0 | 1,079,423,070 | 100% | ||
discobear | 0 | 770,507,010 | 100% | ||
arsa | 0 | 1,120,037,224 | 100% | ||
princesscamel | 0 | 0 | 100% | ||
bitcoingodmode | 0 | 0 | 55% |
I was just wondering if it was possible to use HTML to create a template post with all of my external social media links. Your example code is great for new users who might not have any experience with HTML. Thank you
author | beavishoek |
---|---|
permlink | re-jonrhythmic-formatting-your-steemit-posts-using-html-markup-text-formatting-guide-20180526t204744530z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-05-26 20:47:45 |
last_update | 2018-05-26 20:47:45 |
depth | 1 |
children | 1 |
last_payout | 2018-06-02 20:47:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.002 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 218 |
author_reputation | 18,458,199,514,423 |
root_title | "🈪 Formatting your Steemit posts using HTML markup" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,854,443 |
net_rshares | 9,229,551,023 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jonrhythmic | 0 | 0 | 100% | ||
skermsphotos27 | 0 | 7,533,254,262 | 100% | ||
beavishoek | 0 | 1,696,296,761 | 100% |
I haven't researched on this subject, but I think google could give some answers. Thank you for commenting!
author | jonrhythmic |
---|---|
permlink | re-beavishoek-re-jonrhythmic-formatting-your-steemit-posts-using-html-markup-text-formatting-guide-20180614t151042553z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-06-14 15:10:42 |
last_update | 2018-06-14 15:10:42 |
depth | 2 |
children | 0 |
last_payout | 2018-06-21 15:10:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 107 |
author_reputation | 1,019,034,040,422 |
root_title | "🈪 Formatting your Steemit posts using HTML markup" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 60,736,344 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
beavishoek | 0 | 0 | 100% |
Hi @jonrhythmic, I see you have mentioned me.<br>*This is automatic bot response so that I may respond to your mention later.<br> <a href="https://steemit.com/bot/@blueorgy/my-automatic-response-to-mentions-bot-code">Learn more about this bot...</a>*
author | blueorgy |
---|---|
permlink | re-formatting-your-steemit-posts-using-html-markup-text-formatting-guide-20170727t010234 |
category | steemit |
json_metadata | "{"app": "pysteem/0.5.4"}" |
created | 2017-07-27 01:02:36 |
last_update | 2017-07-27 01:02:36 |
depth | 1 |
children | 1 |
last_payout | 2017-08-03 01:02:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 250 |
author_reputation | 56,287,880,276,342 |
root_title | "🈪 Formatting your Steemit posts using HTML markup" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,856,144 |
net_rshares | 2,508,296,242 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jonrhythmic | 0 | 2,508,296,242 | 100% | ||
beavishoek | 0 | 0 | 100% |
Good bro.i am following you.i am a new member on steemit. So please follow and upvote me. @blueorgy66
author | shahaalam19 |
---|---|
permlink | re-blueorgy-re-formatting-your-steemit-posts-using-html-markup-text-formatting-guide-20170727t010234-20170727t010443161z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["blueorgy66"],"app":"steemit/0.1"} |
created | 2017-07-27 01:04:48 |
last_update | 2017-07-27 01:04:48 |
depth | 2 |
children | 0 |
last_payout | 2017-08-03 01:04: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 | 101 |
author_reputation | -2,926,318,423,623 |
root_title | "🈪 Formatting your Steemit posts using HTML markup" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,856,285 |
net_rshares | 0 |
great tutorial 👍 Very complete and interesting 🔝 Up voted 🔝
author | charline | ||||||
---|---|---|---|---|---|---|---|
permlink | re-jonrhythmic-2017730t23524355z | ||||||
category | steemit | ||||||
json_metadata | {"tags":"steemit","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-30 00:35:30 | ||||||
last_update | 2017-07-30 00:35:30 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2017-08-06 00:35:30 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 61 | ||||||
author_reputation | 3,575,755,113,141 | ||||||
root_title | "🈪 Formatting your Steemit posts using HTML markup" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 10,171,668 | ||||||
net_rshares | 901,896,454 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jonrhythmic | 0 | 901,896,454 | 100% |
Thank you!
author | jonrhythmic |
---|---|
permlink | re-charline-re-jonrhythmic-2017730t23524355z-20170730t010043226z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-30 01:00:42 |
last_update | 2017-07-30 01:00:42 |
depth | 2 |
children | 0 |
last_payout | 2017-08-06 01:00:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 1,019,034,040,422 |
root_title | "🈪 Formatting your Steemit posts using HTML markup" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,173,091 |
net_rshares | 0 |
thank you, I'm collecting some of these tips to help improve my posts, I will review it in more detail soon. new follower here, p.s. I found you through mention in @curie / peace
author | clumsysilverdad |
---|---|
permlink | re-jonrhythmic-formatting-your-steemit-posts-using-html-markup-text-formatting-guide-20170801t151857146z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["curie"],"app":"steemit/0.1"} |
created | 2017-08-01 15:18:57 |
last_update | 2017-08-01 15:18:57 |
depth | 1 |
children | 1 |
last_payout | 2017-08-08 15:18:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 178 |
author_reputation | 28,166,630,869,767 |
root_title | "🈪 Formatting your Steemit posts using HTML markup" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,434,692 |
net_rshares | 2,558,622,077 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jonrhythmic | 0 | 2,558,622,077 | 100% |
Hi, hope this guide is useful to you! Didn't know I made any lists, so thank you for the tip-off.
author | jonrhythmic |
---|---|
permlink | re-clumsysilverdad-re-jonrhythmic-formatting-your-steemit-posts-using-html-markup-text-formatting-guide-20170801t160931229z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-08-01 16:09:30 |
last_update | 2017-08-01 16:09:30 |
depth | 2 |
children | 0 |
last_payout | 2017-08-08 16:09:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 98 |
author_reputation | 1,019,034,040,422 |
root_title | "🈪 Formatting your Steemit posts using HTML markup" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,439,921 |
net_rshares | 0 |
<h3>Thank you so much, I bookmarked this page :)))) </h3>
author | discobear |
---|---|
permlink | re-jonrhythmic-formatting-your-steemit-posts-using-html-markup-text-formatting-guide-20170730t095355342z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-30 09:53:57 |
last_update | 2017-07-30 09:53:57 |
depth | 1 |
children | 1 |
last_payout | 2017-08-06 09:53:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 57 |
author_reputation | 24,519,919,102 |
root_title | "🈪 Formatting your Steemit posts using HTML markup" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,204,059 |
net_rshares | 1,028,364,283 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jonrhythmic | 0 | 1,028,364,283 | 100% |
That's great! Hope it's helpful!
author | jonrhythmic |
---|---|
permlink | re-discobear-re-jonrhythmic-formatting-your-steemit-posts-using-html-markup-text-formatting-guide-20170730t095643440z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-07-30 09:56:42 |
last_update | 2017-07-30 09:58:00 |
depth | 2 |
children | 0 |
last_payout | 2017-08-06 09:56:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 1,019,034,040,422 |
root_title | "🈪 Formatting your Steemit posts using HTML markup" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,204,218 |
net_rshares | 0 |
Is there anyway to place a music bed on a post? have a player play a sample or something???
author | kaasiyaniidevi |
---|---|
permlink | re-jonrhythmic-formatting-your-steemit-posts-using-html-markup-text-formatting-guide-20170927t184904763z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-09-27 18:49:03 |
last_update | 2017-09-27 18:49:03 |
depth | 1 |
children | 1 |
last_payout | 2017-10-04 18:49: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 | 91 |
author_reputation | 147,360,817 |
root_title | "🈪 Formatting your Steemit posts using HTML markup" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,110,236 |
net_rshares | 0 |
Hi, I know you can embed Soundcloud tracks, take a look at this guide: https://steemit.com/music/@eoincurran/how-to-simply-embed-soundcloud-tracks-in-your-posts-in-seconds Other than that there is embedding Youtube-links into your posts. Hope this helps!
author | jonrhythmic |
---|---|
permlink | re-kaasiyaniidevi-re-jonrhythmic-formatting-your-steemit-posts-using-html-markup-text-formatting-guide-20170929t143513885z |
category | steemit |
json_metadata | {"tags":["steemit"],"links":["https://steemit.com/music/@eoincurran/how-to-simply-embed-soundcloud-tracks-in-your-posts-in-seconds"],"app":"steemit/0.1"} |
created | 2017-09-29 14:35:12 |
last_update | 2017-09-29 14:35:12 |
depth | 2 |
children | 0 |
last_payout | 2017-10-06 14:35: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 | 255 |
author_reputation | 1,019,034,040,422 |
root_title | "🈪 Formatting your Steemit posts using HTML markup" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,284,726 |
net_rshares | 0 |
This post was resteemed by @resteembot! Good Luck! ---- Learn more about the @resteembot project [in the introduction post](https://steemit.com/resteembot/@resteembot/resteem-bot-introduction). ----
author | resteembot |
---|---|
permlink | re-jonrhythmic-formatting-your-steemit-posts-using-html-markup-text-formatting-guide-20170729t215526245z |
category | steemit |
json_metadata | "" |
created | 2017-07-29 21:55:24 |
last_update | 2017-07-29 21:55:24 |
depth | 1 |
children | 0 |
last_payout | 2017-08-05 21:55: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 | 198 |
author_reputation | 454,519,749,949 |
root_title | "🈪 Formatting your Steemit posts using HTML markup" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,157,142 |
net_rshares | 1,232,591,820 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jonrhythmic | 0 | 1,232,591,820 | 100% | ||
pockahoxel | 0 | 0 | 0% |
Good bro.i am following you.i am a new member on steemit. So please follow and upvote me. @jonrhythmic51
author | shahaalam19 |
---|---|
permlink | re-jonrhythmic-formatting-your-steemit-posts-using-html-markup-text-formatting-guide-20170727t010545177z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["jonrhythmic51"],"app":"steemit/0.1"} |
created | 2017-07-27 01:05:48 |
last_update | 2017-07-27 01:05:48 |
depth | 1 |
children | 0 |
last_payout | 2017-08-03 01:05: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 | 104 |
author_reputation | -2,926,318,423,623 |
root_title | "🈪 Formatting your Steemit posts using HTML markup" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,856,345 |
net_rshares | 0 |
Congratulations @jonrhythmic! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](http://steemitboard.com/@jonrhythmic) Award for the number of posts published [](http://steemitboard.com/@jonrhythmic) Award for the number of upvotes received Click on any badge to view your own Board of Honor on SteemitBoard. For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard) If you no longer want to receive notifications, reply to this comment with the word `STOP` > By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
author | steemitboard |
---|---|
permlink | steemitboard-notify-jonrhythmic-20170727t101708000z |
category | steemit |
json_metadata | {"image":["https://steemitboard.com/img/notifications.png"]} |
created | 2017-07-27 10:17:06 |
last_update | 2017-07-27 10:17:06 |
depth | 1 |
children | 0 |
last_payout | 2017-08-03 10:17:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 866 |
author_reputation | 38,975,615,169,260 |
root_title | "🈪 Formatting your Steemit posts using HTML markup" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,895,147 |
net_rshares | 2,525,359,482 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jonrhythmic | 0 | 2,525,359,482 | 100% |