It's been a while since the last time, but... there's a new bbcode in town! Two, actually. You can finally have clickable tabs in your posts! Possible uses include separating long skill/lore lists by area, or breaking down lengthy amounts of information while keeping them all in one post. Locations could also benefit from this for their NPCs, price lists, notes, etc.
If you have trouble displaying the tabs, try deleting your cache as I made some changes to the style files. Tabs require javascript to be on, otherwise you will just see the tabs being displayed one after another.

- Code: Select all
[tabset=200][tab=First tab,#000044,white]Contents of first tab[/tab] [tab=Second tab,#003377,white]Contents of second tab[/tab][/tabset]
produces
First tab
Contents of first tab
Second tab
Contents of second tab
So, there is a tabset bbcode with tab bbcodes inside. The argument to tabset is the height, in pixels, of the tabset. If the content takes more vertical space than this, a scrollbar will show up. This way, a lot of information can take up little space on the screen.
The tab bbcodes take three parameters: the tab's title (cannot have commas in it), the tab's background color and the tab's text color. Put the tab's content inside the bbcode and you're done.
If there is enough interest, I'll work on adding more tab options, maybe skinnable tabs and so on!