Void appendExisting(ElementTree dest, ElementTree block)
Arguments
dest: The element to add toblock: The element to append
Usage
Append an existing element as the final child of the specified element.
p = addParagraph(parent,"Hello world!");
// is equivalent to
p = addParagraph(anonymousBlock(),"Hello world!");
appendExisting(parent,p);