From http://www.w3schools.com (Copyright Refsnes Data)
There will be one <fo:list-item> object for each item in a list.
There are four XSL-FO objects used to create lists:
<fo:list-item> <!-- Contents:(list-item-label,list-item-body) --> </fo:list-item> |
An XSL-FO list example:
<fo:list-block> <fo:list-item> <fo:list-item-label> <fo:block>*</fo:block> </fo:list-item-label> <fo:list-item-body> <fo:block>Volvo</fo:block> </fo:list-item-body> </fo:list-item> <fo:list-item> <fo:list-item-label> <fo:block>*</fo:block> </fo:list-item-label> <fo:list-item-body> <fo:block>Saab</fo:block> </fo:list-item-body> </fo:list-item> </fo:list-block> |
The output from this code would be:
* Volvo * Saab |
From http://www.w3schools.com (Copyright Refsnes Data)