antonmedv / monkberry

Monkberry is a JavaScript library for building web user interfaces
https://monkberry.js.org
MIT License
1.49k stars 78 forks source link

Image insertion #41

Closed wadeV12 closed 7 years ago

wadeV12 commented 7 years ago

When i am trying to put image in template i always got error:

Tag identifiers should be same ( !=

) while parsing file.

So here is code:

<img src="{{ barcode_img_src }}" alt="">

And it's not working. But this code works:

<img src="{{ barcode_img_src }}" alt=""></img>
antonmedv commented 7 years ago

Correct, all tags should be closed (except br, link and a few more). You can use this: <img src="{{ barcode_img_src }}" alt=""/>