Bold
Example:
[b]Bolded Text[/b]Result:
Bolded TextItalics
Example:
[i]Italic Text[/i]Result:
Italic TextUnderline
Example:
[u]Underlined Text[/u]Result:
Underlined TextStrikethrough
Example:
[s]Strikethrough Text[/s]Result:
Strikethrough
Example:
[s]Strikethrough Text[/s]Result:
Images
Example:
[img]http://i.imgur.com/KQHJv2u.png[/img]Result:
Notes
- Make sure you have uploaded your image to a website such as Imgur
- Make sure your image url does not start with "file://"
- Make sure your image does not start with "blob:"
Links
Example:
- [url=http://donutteam.com]Donut Team[/url]
- [url]http://donutteam.com[/url]
Result:
Notes
- Make sure your links are public to everyone.
- Make sure your links do not start with "file://"
YouTube videos
Example:
[yt]jNQXAC9IVRw[/yt]Result:
Notes
- Make sure the videos are public to everyone.
- Make sure your video only contains the YouTube ID. For example, only include the bolded area: www.youtube.com/watch?v=jNQXAC9IVRw
Code
Example:
[code]<?php
function LoadDefinition($BBCodeReader,$Path)
{
// do stuff
}
?>
[/code]
Result:
<?php function LoadDefinition($BBCodeReader,$Path) { // do stuff } ?>
Lists
Example:
Using a non-closing tag
[list][*] List Item #1
[*] List Item #2
[/list]
Using a closing tag
[list][li]List Item #1[/li]
[li]List Item #2[/li]
[/list]
Using numbers instead of bullet points
[list=1][li]List Item #1[/li]
[li]List Item #2[/li]
[/list]
Result:
Using a non-closing tag
- List Item #1
- List Item #2
Using a closing tag
- List Item #1
- List Item #2
Using numbers instead of bullet points
- List Item #1
- List Item #2
Changelog
20 October 2016
- Introduced new post formatting processor created by Lucas Cardellini.