I am trying to generate a markdown for a word document and render it using xwiki. The word doc contains a list and a table between the list with contents in it.The list contents inside the table are at a level 4 and the list item just before the table is at level 3. The xslt generates the markdown considering the table contents as a sublist with
(((
(% class="TableWithoutBorders" %)
|(((
**** text
**** text
**** text
)))|(((
**** text
**** text
**** text
)))
)))
The generated markdown looks like what I expect it to be but when the markdown is rendered I am getting additional bullets at level 1,2 and 3 inside the table before the actual text is rendered. The parent outside the table is not being considered while rendering. I am not sure whether the markdown should be generated in a different way?