[ edit ] tag
Example:
EDIT:
This is an edit. |
Code:
[edit] This is an edit. [/edit]
PHP and HTML tags
These tags seem to be like the code tag except that the code tag is for any code, whereas the PHP and HTML tags are for coloring php and html.
Examples:
$var = "Hello World!";
echo $var;
<html>
<head>
<title> Test </title>
</head>
<body>
<p> Hello world </p>
</body>
</html>
Code:
[php] $var = "Hello World!"; echo $var; [/php] [html] <html> <head> <title> Test </title> </head> <body> <p> Hello world </p> </body> </html> [/html]
I added a new tag called icode. This displays inline code.
Example:
Lorem ipsum dolor sit amet
some code
more text.