Is it possible to use volt to compile without <?php ?> tags ?
I'm using postcss-plugins and it transforms my classNames
.myclass{...}
is now ._v1{...}
Now I need to replace my volt html classNames;
<div class="myclass"></div>
needs to be <div class="_V1"></div>
I know that I can create a function for that but I think it's better to cache already the className not a function