theEclipse
Programmer
Hello
I am working on a xslt program to process xml into html that has a list of requirements for a program.
Many of the requirements are just as simple as this:
However some of them have sub-requirements:
Is there a way to make my xsl:template match to make this look nice in something like a nested <ul> layout?
Thanks
Robert Carpenter
"Disobedience to conscience is voluntary; bad poetry, on the other hand, is usually not made on purpose." - C.S. Lewis (Preface to Paradise Lost)
ô¿ô
I am working on a xslt program to process xml into html that has a list of requirements for a program.
Many of the requirements are just as simple as this:
Code:
<requirement>128Mb onboard video card memory</requirement>
<requirement>...</requirement>
<requirement>...</requirement>
However some of them have sub-requirements:
Code:
<requirement>Video card
<requirement>128Mb onboard memory</requirement>
<requirement>PCIxpress or AGP 8x</requirement>
<requirement>Dual screen</requirement>
</requirement>
<requirement>...</requirement>
<requirement>
<requirement>...</requirement>
<requirement>...</requirement>
</requirement>
Is there a way to make my xsl:template match to make this look nice in something like a nested <ul> layout?
Thanks
Robert Carpenter
"Disobedience to conscience is voluntary; bad poetry, on the other hand, is usually not made on purpose." - C.S. Lewis (Preface to Paradise Lost)
ô¿ô