Built-In TagsΒΆ
Below are the tag formatters that are built into bbcode by default:
| Tag | Input | Output |
|---|---|---|
| b | [b]test[/b] | <b>test</b> |
| i | [i]test[/i] | <i>test</i> |
| u | [u]test[/u] | <u>test</u> |
| s | [s]strike[/s] | <span style=”text-decoration:line-through;”>strike</span> |
| hr | [hr] | <hr /> |
| sub | x [sub]3[/sub] | x<sub>3</sub> |
| sup | x [sup]3[/sup] | x<sup>3</sup> |
| list/* | [list] [*]one [*]two [/list] | <ul> <li>one</li> <li>two</li> </ul> |
| quote | [quote]hello[/quote] | <blockquote>hello</blockquote> |
| code | [code]x = 3[/code] | <code>x = 3</code> |
| center | [center]hello[/center] | <div style=”text-align:center;”>hello</div> |
| color | [color=red]red[/color] | <span style=”color:red;”>red</span> |
| url | [url=www.apple.com]Apple[/url] | <a href=”http://www.apple.com“>Apple</a> |