Closed Tarmil closed 5 years ago
Add a new attribute ws-preserve such that children aren't interpreted for template holes and ws- attributes and nodes. eg:
ws-preserve
ws-
<div> ${ThisIsAHole} ${ThisToo} <div ws-preserve>${ThisIsNotAHole}</div> </div>
filled with:
MyTemplate().ThisIsAHole("foo").Doc()
gives:
<div> foo <div>${ThisIsNotAHole}</div> </div>
Add a new attribute
ws-preserve
such that children aren't interpreted for template holes andws-
attributes and nodes. eg:filled with:
gives: