Unable to post due to the img tag on the code block

View this thread on: d.buzz | hive.blog | peakd.com | ecency.com
·@freemanity·
0.000 HBD
Unable to post due to the img tag on the code block
A post of a code block  containing an img tag with attributes from angular

```
<div class="card">
  <div class="card-body">
      <div class="media">
          <div class="media-body">

              <section class="row">
                  <div class="col-xs-4 col-sm-4 col-md-4">
                     
                  </div> 
    
                  <div class="col-xs-7 col-sm-7 col-md-7">
                      <h5 class="mt-0 clearfix">
                        {{ item.title }}
                        
                        <button class="float-right btn btn-light text-info" (click)="addItemToCart(item)">
                            <i class="fa fa-plus"></i>                            
                        </button>
                      </h5> 

                      <small class="text-success">{{ item.price }}</small>
                  </div>
    
              </section>
 
          </div>
        </div>
  </div>
</div>

```
👍 , ,