(descendants ndl)
Returns recursive all children of ndl: The children of ndl,
the children of the children of ndl, ... .
Example
This example should query all TITLE-Elements, e.g. to generate a table of contents.
Problem: The method (select-elements ndl pattern)
selects just elements in the node-list ndl.
The children of ndl are not considered, but all TITLE-Elements should be queried.
Solution: The method descendants is used instead of children.