BBcode Information

The following BBcode tags are supported by this system.

b | bold
Info: Make inner text bold
E.g: [b]Text[/b]
html: <strong>Text</strong>
result: Text

i | italic
Info: Make inner text italics
E.g : [i]Text[/i]
html: <em>Text</em>
result: Text

u | underline
Info: Underline the inner text
E.g : [u]Text[/u]
html: <span style="text-decoration: underline;">Text</span>
result: Text

s | strike
Info: Strike a line through the inner text
E.g : [s]Text[/s]
html: <span style="text-decoration: line-through;">Text</span>
result: Text

pre | code
Info: add code or "preformated text" inside
- Each Space would now show rather than being combined to a single space
E.g : [pre] Some Text [/pre]
html: <pre> Some Text </pre>
result:

  Some      Text  

big | large
Info: Large text font size
E.g : [big]Text[/big]
html: <span style="font-size: 18px;">Text</span>
result: Text

bigger | larger
Info: Even larger text font size
E.g : [bigger]Text[/bigger]
html: <span style="font-size: 24px;">Text</span>
result: Text

small
Info: Small text font size
E.g : [small]Text[/small]
html: <span style="font-size: 9px;">Text</span>
result: Text

smaller | tiny
Info: Even smaller text font size
E.g : [smaller]Text[/smaller]
html: <span style="font-size: 6px;">Text</span>
result: Text

video | youtube
Info: insert a youtube video
E.g : [youtube]https://www.youtube.com/watch?v=D1zuAQAhhMI[/youtube]
html: {Embeded Youtube Video}

img | image
Info: insert an image
E.g : [img]https://www.google.co.uk/logos/2010/oz10-hp.gif[/img]
html: <img src="https://www.google.co.uk/logos/2010/oz10-hp.gif" style="max-height:300px;max-width:300px;" />
result:

url | link
Info: insert a link to another site
Optional Attributes: web address, falling back to the value
E.g : [url]https://www.google.co.uk/[/url]
html: <a rel="nofollow" href="https://www.google.co.uk/" target="_blank">https://www.google.co.uk/<a/>
OR E.g : [url=https://www.google.co.uk/]Visit Google[/url]
html: <a rel="nofollow" href="https://www.google.co.uk/" target="_blank">Visit Google</a>
result: Visit Google

email | mailto
Info: insert a link to email someone
Optional Attributes: Email address, falling back to the value
E.g : [email]mailto:guy@somewhere.co.uk[/email]
html: <a rel="nofollow" href="mailto:guy@somewhere.co.uk">https://www.google.co.uk/<a/>
OR E.g : [email=mailto:guy@somewhere.co.uk]Email Me[/email]
html: <a rel="nofollow" href="mailto:guy@somewhere.co.uk">Email Me</a>
result: Email Me

list | ul | ol
Info: insert a list
Optional Attributes:
a: lowercase-alpha
A: uppercase-alpha
1: decimal
0: decimal-leading-zero
(default / fallback): disc / dot
E.g : [list]
[*]Item 1
[*]Item 2
[/list]
html: <ul><li>Item 1</li><li>Item 2</li></ul>
OR E.g : [list=A]
[*]Item 1
[*]Item 2
[/list]
html: <ul style="list-style:upper-alpha;"><li>Item 1</li><li>Item 2</li></ul>
Result:

Please note:
No other BBcode tags will currently be rendered, and all html code will be stripped out.
We may also remove any content that we feel damages the site and we will delete comments if we or others feel it is inappropriate.

Further reference on BBcode:
https://en.wikipedia.org/wiki/BBCode
https://www.bbcode.org/reference.php