create a tree file
1) create xml-file
create a text-file and rename it to "myfile.xml". then open created file with any text-editor and add the following code:
2) add root-node
<?xml version="1.0" encoding="ISO-8859-1"?>
<linklib>
...
</linklib>

 | root-node must be lowercase and must must end with "lib" (name of tag will become name of library-token) |

 | attributes of root-node will be inherited to every item is library by default (value may be overwritten) |
3) add child-nodes
<?xml version="1.0" encoding="ISO-8859-1"?>
<linklib>
<link name="1" parse="no" ... />
<link name="2" ... />
<link name="3" ... />
</linklib>

 | all child nodes must be lowercase and must not be named like root node |

 | you may define any attributes for child-tags |

 | "name"-attribute of child nodes must be set, must be UNIQUE and not a numeric value |

 | "url"-attribute must not be used (reserved for assembled url) |

 | "cat"-attribute must not be used (reserved for root of tree) |

 | "parent"-attribute must not be used (reserved for parent node) |
4) add subchild-nodes
you may build a tree of any depth by embedding sub-links into parent links. parent-links must be used with closing tag in this case:
<link name="1" parse="no" ... >
<link name="2" ... />
<link name="3" ... />
</link>
|