Closed caph1993 closed 2 years ago
Hello, is it possible to generate the following tree using put syntax?
put
<div>Hello <b>text</b> world</div>
The issue is that the div element has two text children, "Hello " and " world", but the dollar sign syntax $ seems to be designed to accept only one.
div
"Hello "
" world"
$
Do you mean something like: put('div $ b $ < $', 'Hello' , 'text', ' world') ?
put('div $ b $ < $', 'Hello' , 'text', ' world')
Yes, that's exactly what I meant. Thank you.
Hello, is it possible to generate the following tree using
put
syntax?The issue is that the
div
element has two text children,"Hello "
and" world"
, but the dollar sign syntax$
seems to be designed to accept only one.