Add a list
ElementTree addList( ElementTree parent, ListType ltype, Int initialsize, [String] initialcontents=createArray(1) )
parent The parent element
ltype Is the list Unordered or Ordered
initialsize The initial number of list elements to have
initialcontents Optionally, the initial text content for some or all of the list elements. If this list is shorter than initialsize , then only the first list items will be populated. If it is longer, then the extra list items will be ignored.
Add a list to the parent element. Lists may only directly contain list items.
steps = ["Catch flamingo","Place flamingo in pan","Boil for 3 hours"]; list = addList(parent,Ordered,3,steps);
Kaya standard library by Edwin Brady, Chris Morris and others ([email protected]). For further information see http://kayalang.org/
The Kaya standard library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (version 2.1 or any later version) as published by the Free Software Foundation.
HTMLDocument.ListType (3kaya)
HTMLDocument.addListItem (3kaya)
HTMLDocument.getListItem (3kaya)
HTMLDocument.pushListItem (3kaya)