Provided by: kaya_0.4.4-6ubuntu3_amd64 bug

NAME

       HTMLDocument::addListItem - Add a list item

SYNOPSIS

       ElementTree      addListItem(      ElementTree      list,      Int      index,      String
       initialcontents=createString(0) )

ARGUMENTS

       list The list to add to

       index The index to insert at (starting at zero)

       initialcontents Optionally, the initial contents of the list item

DESCRIPTION

       Add a list item to a list at the specified index. If the list  given  is  not  actually  a
       list, an HTMLDocument.InvalidNesting (3kaya) Exception is thrown.

    if (extradetails) {
        addListItem(instructions,5,"Check that all leads are attached.");
        addListItem(instructions,12,"Check that the batteries are charged.");
    }

AUTHORS

       Kaya  standard  library  by  Edwin Brady, Chris Morris and others (kaya@kayalang.org). For
       further information see http://kayalang.org/

LICENSE

       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.

RELATED

       HTMLDocument.addList (3kaya)
       HTMLDocument.getListItem (3kaya)
       HTMLDocument.pushListItem (3kaya)