Element: <list>

Syntax


<!ELEMENT list    (item|list)+>
<!ATTLIST list
          type           (bullet|number) "bullet">

This element occurs in the elements description and list.

See also : item.

Description

The element list contains a list of items or sub-lists in a description.

Examples


    <package name="gimp" version="1.2.3">
        <packageinfo>
                <description>
                    <para>The gimp package contains the GNU Image
                    Manipulation Program.
                    This is useful for :</para>
                    <list>
                    <item>photo retouching,</item>
                    <item>image composition,</item>
                    <item>image authoring.</item>
                    </list>
                </description>

                <requires><name>gtk+</name></requires>

                <utilizes><name>libtiff</name></utilizes>
                <utilizes><name>libpng</name></utilizes>
                <utilizes><name>libjpeg</name></utilizes>
                <utilizes><name>aalib</name></utilizes>
                <utilizes><name>mpeg_lib</name></utilizes>
                <utilizes><name>python</name></utilizes>

        </required>

        ....

    </package>