PluginFormatting

To make plugins, stylesheets and templates easier to read, you can use special alternative formatting for monospaced blocks.

In JavaScript code:

//{{{
var id = document.getElementById("mainMenu");
//}}}

In HTML templates:

<!--{{{-->
<div id="MainMenu">
</div>
<!--}}}-->

In CSS stylesheets

/*{{{*/
div {color: #ff0000;}
/*}}}*/

It will be displayed as:
//{{{
var id = document.getElementById("mainMenu");
//}}}

<!{{{>
<div id="MainMenu">
</div>
<!}}}>

/*{{{*/
div {color: #ff0000;}
/*}}}*/

21 February 2011 (created 11 February 2011)
inserted by FC2 system