I want to pass raw html to @helper macro ... is this possible? For example:
@helper oneColumn(string content) { <div class="row"> <div class="twelve columns"> @content </div> </div> } @put.oneColumn( <h1 id="page-heading">HELLO WORLD!</h1> )
worked
source share