Details
-
Type:
Bug
-
Status: Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 8.1
-
Fix Version/s: None
-
Component/s: Syntax - xwiki/2.0, Syntax - xwiki/2.1
-
Labels:None
-
Similar issues:
Description
After XWIKI-3631-issue the similar rendering problem was fixed,when you just wanted to print a text message inside verbatim with another escape character: ~.
So this works just fine now:
{{{a~b}}}
But if you want to render something in a link with verbatim , it's still not working:
#set( $var="test~~") [[ {{{ $var }}} >> Testpage]]
This block still render the ~ escape character wrong inside verbatim.(Display just one ~ instead of two.I could just replace all ~ character with:~~ combination to display it properly ,but this is still a problem.