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