Example |
Tag |
Render |
Text in bold |
[b] Text in bold [/b] |
Text in bold |
underlined text |
[u-line] underlined text [/u-line] |
underlined text |
strikethrough text |
[barre] strikethrough text [/barre] |
strikethrough text |
left aligned |
[left] left aligned [/left] |
left aligned
(this text is aligned to the left of the cell) |
Justified text |
[justify] Justified text [/justify] |
Justified text (this text is justified ) |
Right aligned |
[right] Right aligned [/right] |
Right aligned
(this text is aligned to the right of this cell) |
Alias URL |
[url=https://www.forum-fabb.com] fabb [/url] |
fabb |
Anchor |
[anchor] https://www.forum-fabb.com [/anchor] |
https://www.forum-fabb.com |
Email address |
[email=truc@server.DTL] contact me [/email] |
(will trigger the user’s messagerie client.) |
insert an image |
[img] link of your image [/img] |
Note on Images
1- The images will be resized to 300px length x 200px height.
2- The image must have an absolute link, i.e. from an external server. You cannot insert an image from your machine.
|
Insert quote |
[quote=auteur] [/quote] |
Note :
Quote is a tag a little different from other tags. It will be added to it automatically a little style. Replace the word "auteur" by the person who quoted the expression. Example : [quote=Japanese] the customer is king. [/quote] will display : Japanese says:: the customer is king
|
Insert a code |
[code=] Your code[/code] |
Note :
after the sign "=", without leaving any space, specify the type of script you want to insert. for example php.
[code=php]
if(isset($myvar)){
echo 'the variable'. $myvar .' exists ';
}
[/code]
This code will display
<?php
if(isset($myvar)){
echo 'the variable'. $myvar .' exists';
}?>
|