Dear Users,
I have a XML structure as below and have context created as listitem/bulletedlist/stem . Stem is a Para element. Here I wanted bulletedlist to be ignored in .style so that stem does not move to next line (pls see CURRENTOUTPUT) so that it behaves like EXPECTED OP.
In short is it possible to ignore or make a element behave like para . I am using APP Engine.
<orderedList>
<ListItem>
<bulletedList>
<stem> This is STEM Element</stem>
<ListItem> List A</ListItem>
<ListItem> List B</ListItem>
<ListItem> List C</ListItem>
</bulletedList>
</ListItem>
<ListItem>Demo List 2
</ListItem>
</orderedList>
CURRENT OUTPUT :
1
This is STEM Element
- List A
- List B
- List C
2 Demo List 2
EXPECTED OUTPUT :
1 This is STEM Element
- List A
- List B
- List C
2 Demo List 2
Pls advice.
Tnkx
Sriram Rammohan