Welcome To Our FAQ


Why is '|' used to separate arguments?

Previously we used commas, but the need to pass commas in one of the arguments led me to this solution. So as of r18, this is the new behaviour. We would call it like this:

[[T(GreenText|The Green Text Passed)]]

Of course what if we also want to escape '|', then we do just that, '\|'. Now you say, but this can be achieved the same way by escaping commas. That's true but I think we use more ',' than '|', when passing on an argument, and since I first search if we're escaping the argument splitter char, the plugin will work a lot faster with '|', so it stays like it is after r19, which also fixes #5.