link

* Resolve any includes that are in a parsed file. * * iterates over all of the parsed nodes and if there is a node that is an include tag i.e. <include:file.html/>, then it will load the file, and try and insert it into the webpage. * Note: This will fail if two or more includes rely on each other. If you get an error along the lines of too many levels of CTFE recursion, then you may have one file that includes itself. * * Params: * nodes = The nodes of the current webpage that are to be parsed over. * Returns: The resulting webpage with all includes inserted into it.

link
(
const Node[] nodes
)
()

Meta