There is an undocumented feature that enables you to change the TBS tag markers.
Field and block markers have been set to '[' and ']' only for optimisation consideration. '{' and '}' are common in Javascript code and Style definitions, but '[' and ']' are more rare.
For TBS versions >= 2.02
----------------------------
Tag markers can have one or several characters. They can be forced when creating a new TBS instance.
Example #1:
$TBS = new clsTinyButStrong('{,}');
|
Example #2:
$TBS = new clsTinyButStrong('{{,}}');
|
For TBS versions >= 2.0 and 2.01
-------------------------------------
Tag markers can have only one character. They can be forced when creating a new TBS instance.
Example:
$TBS = new clsTinyButStrong('{}');
|
For TBS versions = 1.xx
--------------------------
Tag markers can have only one character. They can be forced using global variables just after insterting the TBS class.
Example:
include_once('tbs_class.php') ;
$tbs_ChrOpen = '{' ;
$tbs_ChrClose = '}' ;
|