1
如何在XSLT中處理除數字以外的項目符號樣式。我想繪製一張表格(XAML flowdocument)並將行放在下面。層次縮進和特殊的標記風格。不在(XAML)FlowDocument中使用。xslt列表標記樣式
1. Some text.........................
a. Some text.....................
[1]. Some text................
a. Some text again........
[1]. Som text again....
Xml源代碼將如下所示。
<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>