<center></center> Steemit posts support a limited subset of HTML that can be mixed with the Markdown syntax. While Markdown is documented (click on ['Markdown Styling Guide'](https://guides.github.com/features/mastering-markdown/) in the editor view), I was not able to find any detailed documentation for HTML in Steemit posts. I thought that I could [do it myself](https://youtu.be/BYbOkRye4gs) and gathered the information from the [source code of Condenser](https://github.com/steemit/condenser), the official Steemit UI. This following list of tags, attributes and classes is my interpretation of the code. I hope it helps. Please keep in mind that this is not officially documented and Steemit may change the [whitelitsted](https://en.wikipedia.org/wiki/Whitelist) HTML in the future. Also, please let me know in the comments if you find any mistakes or missing information. ## Tags that allow attributes * `a` [(Reference)](https://www.w3schools.com/tags/tag_a.asp) * Attributes * href * rel * `div` [(Reference)](https://www.w3schools.com/tags/tag_div.asp) * Attributes * class * Allowed class values * pull-right * pull-left * text-justify * text-rtl * text-center * text-right * videoWrapper * phishy * title * `iframe` [(Reference)](https://www.w3schools.com/tags/tag_iframe.asp) * Attributes * src * Supports only youtube, vimeo and soundcloud * width * height * frameborder * allowfullscreen * webkitallowfullscreen * mozallowfullscreen * `img` [(Reference)](https://www.w3schools.com/tags/tag_img.asp) * Attributes * src * alt * `td` [(Reference)](https://www.w3schools.com/tags/tag_td.asp) * Attributes * style ## Tags without attributes * `b` [(Reference)](https://www.w3schools.com/tags/tag_b.asp) * `blockquote` [(Reference)](https://www.w3schools.com/tags/tag_blockquote.asp) * `br` [(Reference)](https://www.w3schools.com/tags/tag_br.asp) * `center` [(Reference)](https://www.w3schools.com/tags/tag_center.asp) * `code` [(Reference)](https://www.w3schools.com/tags/tag_code.asp) * `del` [(Reference)](https://www.w3schools.com/tags/tag_del.asp) * `em` [(Reference)](https://www.w3schools.com/tags/tag_em.asp) * `h1` [(Reference)](https://www.w3schools.com/tags/tag_h1.asp) * `h2` [(Reference)](https://www.w3schools.com/tags/tag_h2.asp) * `h3` [(Reference)](https://www.w3schools.com/tags/tag_h3.asp) * `h4` [(Reference)](https://www.w3schools.com/tags/tag_h4.asp) * `h5` [(Reference)](https://www.w3schools.com/tags/tag_h5.asp) * `h6` [(Reference)](https://www.w3schools.com/tags/tag_h6.asp) * `hr` [(Reference)](https://www.w3schools.com/tags/tag_hr.asp) * `i` [(Reference)](https://www.w3schools.com/tags/tag_i.asp) * `li` [(Reference)](https://www.w3schools.com/tags/tag_li.asp) * `ol` [(Reference)](https://www.w3schools.com/tags/tag_ol.asp) * `p` [(Reference)](https://www.w3schools.com/tags/tag_p.asp) * `pre` [(Reference)](https://www.w3schools.com/tags/tag_pre.asp) * `q` [(Reference)](https://www.w3schools.com/tags/tag_q.asp) * `strike` [(Reference)](https://www.w3schools.com/tags/tag_strike.asp) * `strong` [(Reference)](https://www.w3schools.com/tags/tag_strong.asp) * `sub` [(Reference)](https://www.w3schools.com/tags/tag_sub.asp) * `sup` [(Reference)](https://www.w3schools.com/tags/tag_sup.asp) * `table` [(Reference)](https://www.w3schools.com/tags/tag_table.asp) * `tbody` [(Reference)](https://www.w3schools.com/tags/tag_tbody.asp) * `th` [(Reference)](https://www.w3schools.com/tags/tag_th.asp) * `thead` [(Reference)](https://www.w3schools.com/tags/tag_thead.asp) * `tr` [(Reference)](https://www.w3schools.com/tags/tag_tr.asp) * `ul` [(Reference)](https://www.w3schools.com/tags/tag_ul.asp) Furthermore, [HTML entities](https://www.w3schools.com/html/html_entities.asp) like ` ` are allowed. As @dbooster pointed out, Steemit removes HTML comments from the markup. Besides of [obscure Markdown voodoo](https://stackoverflow.com/questions/4823468/comments-in-markdown#20885980), there seems to be no good way to have comments in articles. Based on this information, I am happy to be able to offer you this helpful snippet: ``` <center> <div class="phishy">🔥🔥🔥UPVOTERS ARE MORE SUCCESSFUL🔥🔥🔥</div><br> <div class="phishy">🔥🔥🔥RESTEEMERS LIVE LONGER🔥🔥🔥</div> </center> ``` <br> It should produce following output: <center> <div class="phishy">🔥🔥🔥UPVOTERS ARE MORE SUCCESSFUL🔥🔥🔥</div><br> <div class="phishy">🔥🔥🔥RESTEEMERS LIVE LONGER🔥🔥🔥</div> </center> <hr/> <div> <div class="pull-right">© 2017 @snug</div> </div>
author | snug |
---|---|
permlink | steemit-s-html-whitelist |
category | steemit |
json_metadata | {"tags":["steemit","steemitdev","steemithelp","html","busy"],"users":["dbooster","snug"],"links":["https://guides.github.com/features/mastering-markdown/","https://youtu.be/BYbOkRye4gs","https://github.com/steemit/condenser","https://en.wikipedia.org/wiki/Whitelist","https://www.w3schools.com/tags/tag_a.asp","https://www.w3schools.com/tags/tag_div.asp","https://www.w3schools.com/tags/tag_iframe.asp","https://www.w3schools.com/tags/tag_img.asp","https://www.w3schools.com/tags/tag_td.asp","https://www.w3schools.com/tags/tag_b.asp","https://www.w3schools.com/tags/tag_blockquote.asp","https://www.w3schools.com/tags/tag_br.asp","https://www.w3schools.com/tags/tag_center.asp","https://www.w3schools.com/tags/tag_code.asp","https://www.w3schools.com/tags/tag_del.asp","https://www.w3schools.com/tags/tag_em.asp","https://www.w3schools.com/tags/tag_h1.asp","https://www.w3schools.com/tags/tag_h2.asp","https://www.w3schools.com/tags/tag_h3.asp","https://www.w3schools.com/tags/tag_h4.asp","https://www.w3schools.com/tags/tag_h5.asp","https://www.w3schools.com/tags/tag_h6.asp","https://www.w3schools.com/tags/tag_hr.asp","https://www.w3schools.com/tags/tag_i.asp","https://www.w3schools.com/tags/tag_li.asp","https://www.w3schools.com/tags/tag_ol.asp","https://www.w3schools.com/tags/tag_p.asp","https://www.w3schools.com/tags/tag_pre.asp","https://www.w3schools.com/tags/tag_q.asp","https://www.w3schools.com/tags/tag_strike.asp","https://www.w3schools.com/tags/tag_strong.asp","https://www.w3schools.com/tags/tag_sub.asp","https://www.w3schools.com/tags/tag_sup.asp","https://www.w3schools.com/tags/tag_table.asp","https://www.w3schools.com/tags/tag_tbody.asp","https://www.w3schools.com/tags/tag_th.asp","https://www.w3schools.com/tags/tag_thead.asp","https://www.w3schools.com/tags/tag_tr.asp","https://www.w3schools.com/tags/tag_ul.asp","https://www.w3schools.com/html/html_entities.asp","https://stackoverflow.com/questions/4823468/comments-in-markdown#20885980"],"app":"steemit/0.1","format":"markdown","image":["https://steemitimages.com/DQmXiqdSwUnqLV7JvmurhDtJQZaMmceesky8asthLSvLL3E/tag.png"]} |
created | 2017-11-15 12:34:39 |
last_update | 2017-11-21 13:37:06 |
depth | 0 |
children | 21 |
last_payout | 2017-11-22 12:34:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.638 HBD |
curator_payout_value | 0.485 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,137 |
author_reputation | 1,676,170,166,621 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,461,323 |
net_rshares | 1,017,784,790,976 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ubg | 0 | 220,344,563 | 1% | ||
cryptohustlin | 0 | 3,001,433,107 | 2% | ||
reported | 0 | 685,697,031 | 2% | ||
shaka | 0 | 866,800,302,898 | 25% | ||
alchemage | 0 | 333,492,833 | 2% | ||
smasher | 0 | 1,342,541,459 | 25% | ||
royrodgers | 0 | 571,018,825 | 2% | ||
maxse | 0 | 0 | 100% | ||
edb | 0 | 14,882,574,673 | 100% | ||
steemitboard | 0 | 220,905,112 | 1% | ||
kkugel2 | 0 | 92,451,092 | 100% | ||
mkt | 0 | 42,476,290,774 | 100% | ||
mrainp420 | 0 | 1,072,944,851 | 2% | ||
lovelyloon | 0 | 1,231,788,936 | 100% | ||
rameeha | 0 | 356,224,000 | 100% | ||
pastbastard | 0 | 4,102,180,636 | 100% | ||
minnowpond1 | 0 | 601,999,534 | 2% | ||
synrg | 0 | 29,343,284,826 | 100% | ||
ratticus | 0 | 9,440,704,666 | 100% | ||
driva | 0 | 2,620,668,282 | 2% | ||
originalworks | 0 | 7,670,638,299 | 1.5% | ||
tokenteller | 0 | 206,227,459 | 1% | ||
ohreally | 0 | 206,299,806 | 1% | ||
fivestargroup | 0 | 112,910,551 | 0.02% | ||
rainer.kormann | 0 | 1,251,825,293 | 100% | ||
primetimesports | 0 | 132,315,581 | 0.02% | ||
syahardian | 0 | 785,411,829 | 100% | ||
silbart | 0 | 1,089,023,668 | 100% | ||
spreadthetruth | 0 | 462,818,713 | 100% | ||
armagno | 0 | 962,096,381 | 100% | ||
muhammadrizki96 | 0 | 858,801,540 | 100% | ||
vector01 | 0 | 671,273,819 | 100% | ||
nickole.lefebre | 0 | 618,843,965 | 100% | ||
minnowpondblue | 0 | 2,408,069,025 | 2% | ||
lawyerup | 0 | 205,745,317 | 1% | ||
rjd | 0 | 2,607,274,987 | 100% | ||
karakule03 | 0 | 4,883,310,897 | 100% | ||
steem-marketing | 0 | 3,102,558,658 | 2% | ||
hotrix | 0 | 73,163,683 | 10% | ||
singhrajat | 0 | 3,778,808,582 | 70% | ||
superbot | 0 | 795,888,568 | 100% | ||
ering | 0 | 1,785,091,964 | 2% | ||
hasan24 | 0 | 336,562,459 | 100% | ||
thamisgith | 0 | 1,067,701,614 | 100% | ||
nizam8089 | 0 | 58,027,214 | 100% | ||
elex17 | 0 | 290,136,034 | 100% | ||
russell101 | 0 | 81,238,039 | 100% | ||
iswet | 0 | 388,781,275 | 100% | ||
zalandir | 0 | 928,432,659 | 100% | ||
curiosit | 0 | 568,664,999 | 100% | ||
odrau | 0 | 0 | 100% | ||
tamala | 0 | 0 | 2% |
Thanks! You should also make a disallow list. I learned the other day they don't allow html comments for some reason (I wouldn't use them normally, but my multimarkdown to markdown parser automatically includes them)
author | dbooster |
---|---|
permlink | re-snug-steemit-s-html-whitelist-20171115t145431727z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-15 14:54:33 |
last_update | 2017-11-15 14:54:33 |
depth | 1 |
children | 1 |
last_payout | 2017-11-22 14:54: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 | 217 |
author_reputation | 1,081,260,668,936,147 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,474,278 |
net_rshares | 1,119,533,330 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kkugel2 | 0 | 92,451,092 | 100% | ||
snug | 0 | 1,027,082,238 | 100% |
Good suggestion. Thanks.
author | snug |
---|---|
permlink | re-dbooster-re-snug-steemit-s-html-whitelist-20171115t150116694z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-15 14:59:15 |
last_update | 2017-11-15 14:59:15 |
depth | 2 |
children | 0 |
last_payout | 2017-11-22 14:59:15 |
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 | 24 |
author_reputation | 1,676,170,166,621 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,474,739 |
net_rshares | 0 |
nice my friend pliss vote and follow me
author | hasan24 |
---|---|
permlink | re-snug-steemit-s-html-whitelist-20171115t130057065z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-15 13:00:36 |
last_update | 2017-11-15 13:00:36 |
depth | 1 |
children | 1 |
last_payout | 2017-11-22 13:00: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 | 40 |
author_reputation | -13,892,247,151 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,463,668 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
snug | 0 | 0 | 0% |
Thanks :)
author | snug |
---|---|
permlink | re-hasan24-re-snug-steemit-s-html-whitelist-20171115t132018940z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-15 13:18:18 |
last_update | 2017-11-15 13:18:18 |
depth | 2 |
children | 0 |
last_payout | 2017-11-22 13:18: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 | 9 |
author_reputation | 1,676,170,166,621 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,465,347 |
net_rshares | 191,492,434 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hasan24 | 0 | 191,492,434 | 100% |
good
author | iswet |
---|---|
permlink | re-snug-steemit-s-html-whitelist-20171116t050523909z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-16 05:05:27 |
last_update | 2017-11-16 05:05:27 |
depth | 1 |
children | 0 |
last_payout | 2017-11-23 05:05: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 | 4 |
author_reputation | 370,057,926 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,536,164 |
net_rshares | 864,605,952 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
snug | 0 | 864,605,952 | 100% |
Guzel olmus
author | karakule03 |
---|---|
permlink | re-snug-steemit-s-html-whitelist-20171115t132554615z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-15 13:24:51 |
last_update | 2017-11-15 13:24:51 |
depth | 1 |
children | 0 |
last_payout | 2017-11-22 13:24:51 |
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 | 11 |
author_reputation | 1,397,596,654,824 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,465,977 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
snug | 0 | 0 | 0% |
@driva has voted on behalf of @minnowpond. If you would like to recieve upvotes from minnowponds team on all your posts, simply FOLLOW @minnowpond. To receive an upvote send 0.25 SBD to @minnowpond with your posts url as the memo To receive an reSteem send 0.75 SBD to @minnowpond with your posts url as the memo To receive an upvote and a reSteem send 1.00SBD to @minnowpond with your posts url as the memo
author | minnowpond |
---|---|
permlink | re-steemit-s-html-whitelist-20171115t124107 |
category | steemit |
json_metadata | "{"app": "pysteem/0.5.4"}" |
created | 2017-11-15 12:41:09 |
last_update | 2017-11-15 12:41:09 |
depth | 1 |
children | 0 |
last_payout | 2017-11-22 12:41: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 | 458 |
author_reputation | 13,239,048,956,578 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,461,890 |
net_rshares | 0 |
@royrodgers has voted on behalf of @minnowpond. If you would like to recieve upvotes from minnowponds team on all your posts, simply FOLLOW @minnowpond. To receive an upvote send 0.25 SBD to @minnowpond with your posts url as the memo To receive an reSteem send 0.75 SBD to @minnowpond with your posts url as the memo To receive an upvote and a reSteem send 1.00SBD to @minnowpond with your posts url as the memo
author | minnowpond |
---|---|
permlink | re-steemit-s-html-whitelist-20171116t164052 |
category | steemit |
json_metadata | "{"app": "pysteem/0.5.4"}" |
created | 2017-11-16 16:40:54 |
last_update | 2017-11-16 16:40:54 |
depth | 1 |
children | 0 |
last_payout | 2017-11-23 16:40: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 | 463 |
author_reputation | 13,239,048,956,578 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,589,695 |
net_rshares | 0 |
@mrainp420 has voted on behalf of @minnowpond. If you would like to recieve upvotes from minnowponds team on all your posts, simply FOLLOW @minnowpond. To receive an upvote send 0.25 SBD to @minnowpond with your posts url as the memo To receive an reSteem send 0.75 SBD to @minnowpond with your posts url as the memo To receive an upvote and a reSteem send 1.00SBD to @minnowpond with your posts url as the memo
author | minnowpond |
---|---|
permlink | re-steemit-s-html-whitelist-20171117t203239 |
category | steemit |
json_metadata | "{"app": "pysteem/0.5.4"}" |
created | 2017-11-17 20:32:39 |
last_update | 2017-11-17 20:32:39 |
depth | 1 |
children | 0 |
last_payout | 2017-11-24 20:32: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 | 462 |
author_reputation | 13,239,048,956,578 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,714,382 |
net_rshares | 0 |
Good job. One of the frustrating things for new users is the almost complete lack of documentation on how to make things look nice, and everyone having to go find what works themselves, or already know someone here that knows how things work.
author | ratticus |
---|---|
permlink | re-snug-steemit-s-html-whitelist-20171115t232409638z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-15 23:24:09 |
last_update | 2017-11-15 23:24:09 |
depth | 1 |
children | 0 |
last_payout | 2017-11-22 23:24: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 | 242 |
author_reputation | 5,793,669,654,286 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,515,241 |
net_rshares | 853,000,503 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
snug | 0 | 853,000,503 | 100% |
Thank you very much for sharing this post @snug .. It is very complete, I like it a lot, I will start to practice more with Markdown. Regards..
author | romero22 |
---|---|
permlink | re-snug-steemit-s-html-whitelist-20171116t022558078z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["snug"],"app":"steemit/0.1"} |
created | 2017-11-16 02:24:15 |
last_update | 2017-11-16 02:24:15 |
depth | 1 |
children | 0 |
last_payout | 2017-11-23 02:24:15 |
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 | 143 |
author_reputation | 70,131,715,474 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,526,047 |
net_rshares | 882,014,126 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
snug | 0 | 882,014,126 | 100% |
Thank you @snug ;) time to play
author | silbart |
---|---|
permlink | re-snug-steemit-s-html-whitelist-20171115t124854138z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["snug"],"app":"steemit/0.1"} |
created | 2017-11-15 12:42:51 |
last_update | 2017-11-15 12:43:27 |
depth | 1 |
children | 2 |
last_payout | 2017-11-22 12:42:51 |
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 | 31 |
author_reputation | 1,456,149,971,544 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,462,037 |
net_rshares | 1,137,334,004 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
snug | 0 | 1,137,334,004 | 100% |
Enjoy, I hope it helps. :)
author | snug |
---|---|
permlink | re-silbart-re-snug-steemit-s-html-whitelist-20171115t131853405z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-15 13:16:51 |
last_update | 2017-11-16 00:13:42 |
depth | 2 |
children | 1 |
last_payout | 2017-11-22 13:16:51 |
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 | 26 |
author_reputation | 1,676,170,166,621 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,465,201 |
net_rshares | 972,342,561 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
silbart | 0 | 972,342,561 | 100% |
Yes, I think so my friend ! Greetings from Mongolia, Silbart.
author | silbart |
---|---|
permlink | re-snug-re-silbart-re-snug-steemit-s-html-whitelist-20171115t132848822z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-15 13:22:48 |
last_update | 2017-11-15 13:23:03 |
depth | 3 |
children | 0 |
last_payout | 2017-11-22 13:22: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 | 61 |
author_reputation | 1,456,149,971,544 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,465,758 |
net_rshares | 0 |
Great post buddy, specially that centre attribute 👍
author | singhrajat |
---|---|
permlink | re-snug-steemit-s-html-whitelist-20171115t131709801z |
category | steemit |
json_metadata | {"tags":["steemit"],"community":"busy","app":"busy/2.0.0"} |
created | 2017-11-15 13:17:12 |
last_update | 2017-11-15 13:17:12 |
depth | 1 |
children | 1 |
last_payout | 2017-11-22 13:17: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 | 51 |
author_reputation | 40,014,333,536,827 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,465,244 |
net_rshares | 1,119,925,831 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
snug | 0 | 1,119,925,831 | 100% |
Thanks, man.
author | snug |
---|---|
permlink | re-singhrajat-re-snug-steemit-s-html-whitelist-20171115t131954966z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2017-11-15 13:17:54 |
last_update | 2017-11-15 13:17:54 |
depth | 2 |
children | 0 |
last_payout | 2017-11-22 13:17: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 | 12 |
author_reputation | 1,676,170,166,621 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,465,300 |
net_rshares | 0 |
Paging @ned
author | snug |
---|---|
permlink | re-snug-steemit-s-html-whitelist-20171116t153032699z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["ned"],"app":"steemit/0.1"} |
created | 2017-11-16 15:28:30 |
last_update | 2017-11-16 15:28:30 |
depth | 1 |
children | 0 |
last_payout | 2017-11-23 15:28: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 | 11 |
author_reputation | 1,676,170,166,621 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,582,783 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
snug | 0 | 0 | 0% |
@OriginalWorks
author | snug |
---|---|
permlink | re-snug-steemit-s-html-whitelist-20171116t155539838z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["originalworks"],"app":"steemit/0.1"} |
created | 2017-11-16 15:53:36 |
last_update | 2017-11-16 15:53:36 |
depth | 1 |
children | 1 |
last_payout | 2017-11-23 15:53: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 | 14 |
author_reputation | 1,676,170,166,621 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,585,128 |
net_rshares | 0 |
The @OriginalWorks bot has determined this post by @snug to be original material and upvoted(1.5%) it! <center></center> To call @OriginalWorks, simply reply to any post with @originalworks or !originalworks in your message!
author | originalworks |
---|---|
permlink | re-re-snug-steemit-s-html-whitelist-20171116t155539838z-20171116t155444 |
category | steemit |
json_metadata | "{"app": "pysteem/0.5.4"}" |
created | 2017-11-16 15:54:45 |
last_update | 2017-11-16 15:54:45 |
depth | 2 |
children | 0 |
last_payout | 2017-11-23 15:54:45 |
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 | 346 |
author_reputation | 79,292,026,602,057 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,585,208 |
net_rshares | 0 |
Congratulations @snug! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](http://steemitboard.com/@snug) Award for the number of comments [](http://steemitboard.com/@snug) Award for the number of upvotes 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-snug-20171115t182312000z |
category | steemit |
json_metadata | {"image":["https://steemitboard.com/img/notifications.png"]} |
created | 2017-11-15 18:23:12 |
last_update | 2017-11-15 18:23:12 |
depth | 1 |
children | 0 |
last_payout | 2017-11-22 18:23: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 | 832 |
author_reputation | 38,975,615,169,260 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,493,828 |
net_rshares | 0 |
 This post was resteemed & upvoted by @superbot - the Best Resteem bot on Planet ! Good Luck! Follow for 10 minutes , Send 0.100 Steem/Steem Dollar and the URL in the memo that you want resteemed and upvoted. So don't waste any time ! Get More Followers and gain more Visibility With Superbot . https://media.giphy.com/media/3o72F1FXi8MxXbyIjS/giphy.gif
author | superbot |
---|---|
permlink | re-snug-steemit-s-html-whitelist-20171115t145943973z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["superbot"],"image":["https://steemitimages.com/DQmNuxvJRUTuH7SgSzkuCyMAWPMQ66UdWLdS7XAuLiXWcdf/iNTRO%20pIC-01.jpg","https://media.giphy.com/media/3o72F1FXi8MxXbyIjS/giphy.gif"],"app":"steemit/0.1"} |
created | 2017-11-15 14:59:45 |
last_update | 2017-11-15 14:59:45 |
depth | 1 |
children | 0 |
last_payout | 2017-11-22 14:59:45 |
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 | 471 |
author_reputation | 24,054,780,984 |
root_title | "Steemit's HTML Whitelist" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,474,794 |
net_rshares | 0 |