We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
block>elem>tag>elem not working:
<footer block="footer"> <div elem="column"> <a href="#"> <img elem="img" src="img/app-store.png" alt="" /> </a> <a href="#"> <img elem="img" src="img/google-play.png" alt="" /> </a> </div> </footer>
img tag renders as <img elem="img" src="/app-store.170656b3.png" alt="">
img
<img elem="img" src="/app-store.170656b3.png" alt="">
Still block>elem>elem>elem works (adding elem attribute on img tag solves the issue)
elem
The text was updated successfully, but these errors were encountered:
I can confirm this issue! I just like to add another, more generic example:
Source:
<div block="block"> <div elem="element-one"> <div elem="element-two"> <div elem="element-three">OK</div> </div> </div> </div>
Result, as expected:
<div class="block"> <div class="block__element-one"> <div class="block__element-two"> <div class="block__element-three">OK</div> </div> </div> </div>
<div block="block"> <div elem="element-one"> <div> <div elem="element-two">ERROR</div> </div> </div> </div>
Results in elem attribute not replaced with class:
<div class="block"> <div class="block__element-one"> <div> <div elem="element-two">ERROR</div> </div> </div> </div>
Sorry, something went wrong.
No branches or pull requests
block>elem>tag>elem not working:
img
tag renders as<img elem="img" src="/app-store.170656b3.png" alt="">
Still block>elem>elem>elem works (adding
elem
attribute onimg
tag solves the issue)The text was updated successfully, but these errors were encountered: