How can I handle bullet styles other than numbers in XSLT. I want to draw a table ( XAML flowdocument) and put rows as bellow. hierarchically indented and special marker style. Not using in (XAML)FlowDocument.
1. Some text.........................
a. Some text.....................
[1]. Some text................
a. Some text again........
[1]. Som text again....
Xml source will be as bellow.
<Root>
...
<Step>
<Text>First Level</Text>
</Step>
<Step>
<Text>First Level</Text>
<Step>
<Text>Second Level</Text>
<Step>
<Text>Third Level</Text>
<Step>
<Text>Fourth Level</Text>
</Step>
</Step>
</Step>
</Step>
...
</Root>