BBCode is used to format text and insert URLs, pictures, and videos in forum posts, profiles, comments, and PMs.
BBCode is similar to HTML.
The only difference is BBCode uses square braces []
instead of <>
in HTML.
You can change the style of the text in the following ways:
You can change the font by using the
[font=][/font]
tag.
[font=Arial]Arial[/font]
[font=Verdana]Verdana[/font]
You can also use Font Awesome Icons with the
[font=Fontawesome][/font]
tag.
[font=Fontawesome]font awesome icon gryph[/font]
You can remove formatting with the "Remove formatting" icon
These tags will be removed:
- bold
- underline
- italic
- strike through
- text size
- text color
You can change the text alignment:
To return to left-alignment, delete the tag.
You can create a list by using the
[list][/list]
tag.
To create an un-ordered list:
[list]
[*]kawaii
[*]fugu
[*]shouen
[/list]
To create an ordered, numbered list:
[list=1]
[*]kawaii
[*]fugu
[*]shouen
[/list]
To write raw text, use the
[code][/code]
tag.
[code]You can make the text bold with the [b]text[/b] tag.[/code]
To quote text, use the
[quote][/quote]
tag.
[quote]To quote text, use the quote tag.[/quote]
To quote text from a specific person, specify their username.
[quote=firefractal]To quote text from a specific person, specify their username.[/quote]
To quote text from a specific person from a specific forum post, specify their username and message ID.
[quote=Kineta message=65347775]2021 Yearly Wrap-Up...[/quote]
To create a spoiler button, use the
[spoiler][/spoiler]
tag.
The text in between the tags will be hidden until the "Show spoiler" button is clicked.
[spoiler]This is a spoiler for an episode of an anime that could make people angry.[/spoiler]
To make a named spoiler button, can use
[spoiler=name][/spoiler]
.
[spoiler=secret]Secret[/spoiler]
[spoiler="big secret"]Big Secret[/spoiler]
[spoiler='big secret']Big Secret[/spoiler]
To create named link to urls, use the
[url=][/url]
tag.
[url=https://myanimelist.net]Visit MyAnimeList[/url]
This would display "Visit MyAnimeList" as an link.
To add a picture to your post, use use the
[img][/img]
tag.
[img]http://UrlToPicture.net/Picture.jpg[/img]
To insert a left- or right-aligned picture, use
[img align=left][/img]
or
[img align=right][/img]
.
[img align=left]http://UrlToPicture.net/Picture.jpg[/img]
[img align=right]http://UrlToPicture.net/Picture.jpg[/img]
You can change the image size by using the
[img width= height=]
or
[img=widthxheight]
tag.
[img width=100 height=100]http://UrlToPicture.net/Picture.jpg[/img]
[img=100x100]http://UrlToPicture.net/Picture.jpg[/img]
You can set the image alt text and title by using the
[img alt=]
,
[img title=]
tag.
[img alt=alt_text title="this is title text"]http://UrlToPicture.net/Picture.jpg[/img]
To insert a YouTube video, use the
[yt][/yt]
tag with the YouTube video ID (the part that comes after "https://www.youtube.com/watch?v=")
[yt]UvHaYK3LDYU[/yt]
You can use the preformatted text by using the
[pre][/pre]
tag.
[pre]
- test
- test
[/pre]
You can add a horizontal rule with the
[hr]
tag.
[hr]
You can create a table by using the
[table][/table]
tag.
The following creates a table with a single row and two columns:
[table]
[tr]
[td]first column[/td]
[td]second column[/td]
[/tr]
[/table]
Reuse
[tr][/tr]
tags for additional rows.