Issue with lists inside a table

Hi all,

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?

Thanks in advance.

Are you using http://extensions.xwiki.org/xwiki/bin/view/Extension/Markdown%20Syntax%201.2 ?

we are using http://platform.xwiki.org/xwiki/bin/view/Main/XWikiSyntax
2.1

Then I don’t understand your question and why you mentionned markdown. Could you rephrase please? Thx

I am trying to render

**** text
(((
(% class=“TableWithoutBorders” %)
|(((
**** text
**** text
**** text

)))|(((
**** text
**** text
**** text

)))
)))

the text outside the table renders fine. but there are additional bullets(levels 1,2,3) inside the table.

This is how it is being rendered inside the table.

bullets

This is what I am expecting inside the table

bulletExpected

I don’t see any table (maybe you meant inside a table cell?). If all you need is to have lists inside of cells it’s easy, check the syntax guide: http://platform.xwiki.org/xwiki/bin/view/Main/XWikiSyntax?syntax=2.1&section=Groups

Simple example:

|=header1|=header2
|(((
* list item1
* list item2
)))|cell2