How to create an x (ht) ml-Node containing an href attribute, including a query string, without & s being automatically escaped or a runtime error?
val text = Text("?key=val&key2=val2")
will be shielded and
val node = <a href="link?key=val&key2=val2">link</a>
throws (in Scala 2.7.5):
java.lang.AssertionError
node will be used with the helper method Lift bind (), preferably with AttrBindParam ().
source share