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
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:
but on the site it is not correct:
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 Loading....
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]]
I’m not exactly sure it’s the same bug yet. Feel free to create a new one.
Thanks
thank you
Side note: The quote macro doesn’t work either for this input: https://extensions.xwiki.org/xwiki/bin/view/Extension/Quote%20Macro