A Bulleted List in a Quote not working

Hi,

i tryed to make a bulleted list in a qoute and the qoute is working but not the bulleted list it only shows the * sign.
heres my code:

Test Test

  • T1
  • T2
  • T3

Test Test Test

  • asdf
  • jklö

any idea how to make this working?

thanks

funny thing here in the forum works but not on my xwiki installations with syntax 2.1 activ

in the editor it shows correct:
a1

but on the site it is not correct:
a2

Hi, so the input is the following I guess:

> **Test Test**
> * T1
> * T2
> * T3
>
> **Test Test Test**
> * asdf
> * jklö

Indeed I’ve tried this and the list doesn’t work. Seems like a bug, see https://jira.xwiki.org/browse/XRENDERING-259.

Related:

For devs, I’ve tried the following script in a wiki page:

{{groovy}}
def input = '''
> **Test Test**
> * T1
> * T2
> * T3
>
> **Test Test Test**
> * asdf
> * jklö
'''
def xdom = services.rendering.parse(input, 'xwiki/2.1')
println "{{{${services.rendering.render(xdom, 'event/1.0')}}}}"
{{/groovy}}

and Got:

beginDocument [[syntax]=[XWiki 2.1]]
beginQuotation
beginQuotationLine
onSpace
beginFormat [BOLD]
onWord [Test]
onSpace
onWord [Test]
endFormat [BOLD]
endQuotationLine
beginQuotationLine
onSpace
onSpecialSymbol [*]
onSpace
onWord [T1]
endQuotationLine
beginQuotationLine
onSpace
onSpecialSymbol [*]
onSpace
onWord [T2]
endQuotationLine
beginQuotationLine
onSpace
onSpecialSymbol [*]
onSpace
onWord [T3]
endQuotationLine
beginQuotationLine
endQuotationLine
beginQuotationLine
onSpace
beginFormat [BOLD]
onWord [Test]
onSpace
onWord [Test]
onSpace
onWord [Test]
endFormat [BOLD]
endQuotationLine
beginQuotationLine
onSpace
onSpecialSymbol [*]
onSpace
onWord [asdf]
endQuotationLine
beginQuotationLine
onSpace
onSpecialSymbol [*]
onSpace
onWord [jkl(((246)))]
endQuotationLine
endQuotation
endDocument [[syntax]=[XWiki 2.1]]
1 Like

I’m not exactly sure it’s the same bug yet. Feel free to create a new one.

Thanks

1 Like

thank you

Side note: The quote macro doesn’t work either for this input: https://extensions.xwiki.org/xwiki/bin/view/Extension/Quote%20Macro

1 Like