Replies: 1 comment
|
Any suggestions? |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi,
I'm using TinyMCE in a component, and when I enter square brackets (
[and]), they are not parsed correctly. As a result, some brackets are removed or rearranged, and the output does not match the input.Examples:
Input:
{[{[][]}]}Output:
{[{]}[}]Input:
{{{1}[]}}Output:
{{{1}[}}]Input:
[[][]]Output: Blank
Input:
[[1][2]]Output:
1[2]My component is implemented using XSL.
Does anyone know why TinyMCE behaves this way or what could be causing this issue?
All reactions