Closed preusx closed 8 years ago
There was an issue in attributes escaping in bemto_custom_inline_tag mixin.
bemto_custom_inline_tag
For example:
// There will be an image tag here because of src attribute: +b.block(src!="<?php echo $something; ?>")
Would become:
<img src="<php echo $something; >" class="block" alt="" role="presentation"/>
Which is not an expected behaviour.
So, I made those changes and everything seems to work fine.
There was an issue in attributes escaping in
bemto_custom_inline_tag
mixin.For example:
Would become:
Which is not an expected behaviour.
So, I made those changes and everything seems to work fine.