create account

Steemit's HTML Whitelist by snug

View this thread on: hive.blogpeakd.comecency.com
· @snug · (edited)
$2.12
Steemit's HTML Whitelist
<center>![tag.png](https://steemitimages.com/DQmXiqdSwUnqLV7JvmurhDtJQZaMmceesky8asthLSvLL3E/tag.png)</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 `&nbsp;` 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">&#128293;&#128293;&#128293;UPVOTERS ARE MORE SUCCESSFUL&#128293;&#128293;&#128293;</div><br>
<div class="phishy">&#128293;&#128293;&#128293;RESTEEMERS LIVE LONGER&#128293;&#128293;&#128293;</div>
</center>
```
<br>

It should produce following output:

<center>
<div class="phishy">&#128293;&#128293;&#128293;UPVOTERS ARE MORE SUCCESSFUL&#128293;&#128293;&#128293;</div><br>
<div class="phishy">&#128293;&#128293;&#128293;RESTEEMERS LIVE LONGER&#128293;&#128293;&#128293;</div>
</center>

<hr/>
<div>
<div class="pull-right">© 2017 @snug</div>
</div>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorsnug
permlinksteemit-s-html-whitelist
categorysteemit
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"]}
created2017-11-15 12:34:39
last_update2017-11-21 13:37:06
depth0
children21
last_payout2017-11-22 12:34:39
cashout_time1969-12-31 23:59:59
total_payout_value1.638 HBD
curator_payout_value0.485 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,137
author_reputation1,676,170,166,621
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,461,323
net_rshares1,017,784,790,976
author_curate_reward""
vote details (52)
@dbooster ·
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)
👍  ,
properties (23)
authordbooster
permlinkre-snug-steemit-s-html-whitelist-20171115t145431727z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-15 14:54:33
last_update2017-11-15 14:54:33
depth1
children1
last_payout2017-11-22 14:54:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length217
author_reputation1,081,260,668,936,147
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,474,278
net_rshares1,119,533,330
author_curate_reward""
vote details (2)
@snug ·
Good suggestion. Thanks.
properties (22)
authorsnug
permlinkre-dbooster-re-snug-steemit-s-html-whitelist-20171115t150116694z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-15 14:59:15
last_update2017-11-15 14:59:15
depth2
children0
last_payout2017-11-22 14:59:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation1,676,170,166,621
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,474,739
net_rshares0
@hasan24 ·
nice my friend pliss  vote and follow me
👍  
properties (23)
authorhasan24
permlinkre-snug-steemit-s-html-whitelist-20171115t130057065z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-15 13:00:36
last_update2017-11-15 13:00:36
depth1
children1
last_payout2017-11-22 13:00:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation-13,892,247,151
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,463,668
net_rshares0
author_curate_reward""
vote details (1)
@snug ·
Thanks :)
👍  
properties (23)
authorsnug
permlinkre-hasan24-re-snug-steemit-s-html-whitelist-20171115t132018940z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-15 13:18:18
last_update2017-11-15 13:18:18
depth2
children0
last_payout2017-11-22 13:18:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation1,676,170,166,621
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,465,347
net_rshares191,492,434
author_curate_reward""
vote details (1)
@iswet ·
good
👍  
properties (23)
authoriswet
permlinkre-snug-steemit-s-html-whitelist-20171116t050523909z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-16 05:05:27
last_update2017-11-16 05:05:27
depth1
children0
last_payout2017-11-23 05:05:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation370,057,926
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,536,164
net_rshares864,605,952
author_curate_reward""
vote details (1)
@karakule03 ·
Guzel olmus
👍  
properties (23)
authorkarakule03
permlinkre-snug-steemit-s-html-whitelist-20171115t132554615z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-15 13:24:51
last_update2017-11-15 13:24:51
depth1
children0
last_payout2017-11-22 13:24:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation1,397,596,654,824
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,465,977
net_rshares0
author_curate_reward""
vote details (1)
@minnowpond ·
@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
properties (22)
authorminnowpond
permlinkre-steemit-s-html-whitelist-20171115t124107
categorysteemit
json_metadata"{"app": "pysteem/0.5.4"}"
created2017-11-15 12:41:09
last_update2017-11-15 12:41:09
depth1
children0
last_payout2017-11-22 12:41:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length458
author_reputation13,239,048,956,578
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,461,890
net_rshares0
@minnowpond ·
@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
properties (22)
authorminnowpond
permlinkre-steemit-s-html-whitelist-20171116t164052
categorysteemit
json_metadata"{"app": "pysteem/0.5.4"}"
created2017-11-16 16:40:54
last_update2017-11-16 16:40:54
depth1
children0
last_payout2017-11-23 16:40:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length463
author_reputation13,239,048,956,578
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,589,695
net_rshares0
@minnowpond ·
@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
properties (22)
authorminnowpond
permlinkre-steemit-s-html-whitelist-20171117t203239
categorysteemit
json_metadata"{"app": "pysteem/0.5.4"}"
created2017-11-17 20:32:39
last_update2017-11-17 20:32:39
depth1
children0
last_payout2017-11-24 20:32:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length462
author_reputation13,239,048,956,578
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,714,382
net_rshares0
@ratticus ·
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.
👍  
properties (23)
authorratticus
permlinkre-snug-steemit-s-html-whitelist-20171115t232409638z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-15 23:24:09
last_update2017-11-15 23:24:09
depth1
children0
last_payout2017-11-22 23:24:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length242
author_reputation5,793,669,654,286
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,515,241
net_rshares853,000,503
author_curate_reward""
vote details (1)
@romero22 ·
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..
👍  
properties (23)
authorromero22
permlinkre-snug-steemit-s-html-whitelist-20171116t022558078z
categorysteemit
json_metadata{"tags":["steemit"],"users":["snug"],"app":"steemit/0.1"}
created2017-11-16 02:24:15
last_update2017-11-16 02:24:15
depth1
children0
last_payout2017-11-23 02:24:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length143
author_reputation70,131,715,474
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,526,047
net_rshares882,014,126
author_curate_reward""
vote details (1)
@silbart · (edited)
Thank you @snug ;) time to play
👍  
properties (23)
authorsilbart
permlinkre-snug-steemit-s-html-whitelist-20171115t124854138z
categorysteemit
json_metadata{"tags":["steemit"],"users":["snug"],"app":"steemit/0.1"}
created2017-11-15 12:42:51
last_update2017-11-15 12:43:27
depth1
children2
last_payout2017-11-22 12:42:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation1,456,149,971,544
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,462,037
net_rshares1,137,334,004
author_curate_reward""
vote details (1)
@snug · (edited)
Enjoy, I hope it helps. :)
👍  
properties (23)
authorsnug
permlinkre-silbart-re-snug-steemit-s-html-whitelist-20171115t131853405z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-15 13:16:51
last_update2017-11-16 00:13:42
depth2
children1
last_payout2017-11-22 13:16:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation1,676,170,166,621
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,465,201
net_rshares972,342,561
author_curate_reward""
vote details (1)
@silbart · (edited)
Yes, I think so my friend ! Greetings from Mongolia, Silbart.
properties (22)
authorsilbart
permlinkre-snug-re-silbart-re-snug-steemit-s-html-whitelist-20171115t132848822z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-15 13:22:48
last_update2017-11-15 13:23:03
depth3
children0
last_payout2017-11-22 13:22:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation1,456,149,971,544
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,465,758
net_rshares0
@singhrajat ·
Great post buddy, specially that centre attribute 👍
👍  
properties (23)
authorsinghrajat
permlinkre-snug-steemit-s-html-whitelist-20171115t131709801z
categorysteemit
json_metadata{"tags":["steemit"],"community":"busy","app":"busy/2.0.0"}
created2017-11-15 13:17:12
last_update2017-11-15 13:17:12
depth1
children1
last_payout2017-11-22 13:17:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation40,014,333,536,827
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,465,244
net_rshares1,119,925,831
author_curate_reward""
vote details (1)
@snug ·
Thanks, man.
properties (22)
authorsnug
permlinkre-singhrajat-re-snug-steemit-s-html-whitelist-20171115t131954966z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-11-15 13:17:54
last_update2017-11-15 13:17:54
depth2
children0
last_payout2017-11-22 13:17:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation1,676,170,166,621
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,465,300
net_rshares0
@snug ·
Paging @ned
👍  
properties (23)
authorsnug
permlinkre-snug-steemit-s-html-whitelist-20171116t153032699z
categorysteemit
json_metadata{"tags":["steemit"],"users":["ned"],"app":"steemit/0.1"}
created2017-11-16 15:28:30
last_update2017-11-16 15:28:30
depth1
children0
last_payout2017-11-23 15:28:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation1,676,170,166,621
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,582,783
net_rshares0
author_curate_reward""
vote details (1)
@snug ·
@OriginalWorks
properties (22)
authorsnug
permlinkre-snug-steemit-s-html-whitelist-20171116t155539838z
categorysteemit
json_metadata{"tags":["steemit"],"users":["originalworks"],"app":"steemit/0.1"}
created2017-11-16 15:53:36
last_update2017-11-16 15:53:36
depth1
children1
last_payout2017-11-23 15:53:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation1,676,170,166,621
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,585,128
net_rshares0
@originalworks ·
originalworks
The @OriginalWorks bot has determined this post by @snug to be original material and upvoted(1.5%) it! 
<center>![ezgif.com-resize.gif](https://steemitimages.com/DQmaBi37A5oTnQ9NBLH8YU4jpvhhmFauyvgg3YRrEJwskM9/ezgif.com-resize.gif)</center> 

To call @OriginalWorks, simply reply to any post with @originalworks or !originalworks in your message!
properties (22)
authororiginalworks
permlinkre-re-snug-steemit-s-html-whitelist-20171116t155539838z-20171116t155444
categorysteemit
json_metadata"{"app": "pysteem/0.5.4"}"
created2017-11-16 15:54:45
last_update2017-11-16 15:54:45
depth2
children0
last_payout2017-11-23 15:54:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length346
author_reputation79,292,026,602,057
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,585,208
net_rshares0
@steemitboard ·
Congratulations @snug! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/comments.png)](http://steemitboard.com/@snug) Award for the number of comments
[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/votes.png)](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)!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-snug-20171115t182312000z
categorysteemit
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2017-11-15 18:23:12
last_update2017-11-15 18:23:12
depth1
children0
last_payout2017-11-22 18:23:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length832
author_reputation38,975,615,169,260
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,493,828
net_rshares0
@superbot ·
![iNTRO pIC-01.jpg](https://steemitimages.com/DQmNuxvJRUTuH7SgSzkuCyMAWPMQ66UdWLdS7XAuLiXWcdf/iNTRO%20pIC-01.jpg)

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
properties (22)
authorsuperbot
permlinkre-snug-steemit-s-html-whitelist-20171115t145943973z
categorysteemit
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"}
created2017-11-15 14:59:45
last_update2017-11-15 14:59:45
depth1
children0
last_payout2017-11-22 14:59:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length471
author_reputation24,054,780,984
root_title"Steemit's HTML Whitelist"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,474,794
net_rshares0