This is part of the AutoHotkey Script Collection. Copyright (c) 2008 Tuncay Devecioglu See the file ahkcollec.xml at section license for copying conditions. ---+ [ The ahkml-Language ] +-------------------------------------------------- The ahkml language is actually a full XML based valid language. It describes AutoHotkey scripts with atrributes like title and category, called meta information and references to source files. The document type definition file (ahkml10.dtd) ensures the validation of any ahkml document and is in every way normative. This documentation does not explain the file format with its all dependencies between the elements and attributes. For full documentation, look at the xml source and the dtd itself. This does only explain, what data is expected in corresponding elements and attributes. The description below follows this: Any token between "<" and ">" are elements and the tokens below them enclosed in double quotes are their attributes. A bang "(!)" means, that it is a strictly required element or attribute. ---+ [ Elements and Attributes ] +--------------------------------------------- ........... = The root element. (!) "version" ..... = Marks the used version of ahkml language. Only '1.0' is allowed. (!) "title" ....... = Specifies a title for the whole document. "location" .... = An URL is expected, pointing to an available source of this document. "creator" ..... = Name of the author of this document. "pubdate" ..... = The release date to public of this document. This is not the same as last modified. Format as like '2008-02-24' is expected. ......... = Depending where this is specified, it belongs to document or to a script. The text can be additionally splitted up by

-elements, but it is not required. "url" ......... = An URL pointing to full license text is expected here. ......... = A general introduction section. The text splitted up by

-elements and can additionally contain . ........... = Such a container is a summary of related scripts (only ---+ [ Template 1 ] +----------------------------------------------------------