Discovery Gaming Community
MyCode on this forum,BBCode - Printable Version

+- Discovery Gaming Community (https://discoverygc.com/forums)
+-- Forum: Rules & Requests (https://discoverygc.com/forums/forumdisplay.php?fid=6)
+--- Forum: Site & Forum Feedback (https://discoverygc.com/forums/forumdisplay.php?fid=14)
+--- Thread: MyCode on this forum,BBCode (/showthread.php?tid=146264)



MyCode on this forum,BBCode - Delithor - 12-13-2016

All of the MyCode ends with it's starting code, except with a '/' forward slash in front of the word, in the brackets such as [/code]
Thanks to Skorak for a few codes ^_^
Thanks to Officially_that_Guy for the table example :*

I decided, to remove the Examples.

Code:
[code]
[quote]

[b]
[i]
[u]
[s]

[float=] (left/right)
[align=] (left, center, right, justify)
[indent]
[pi amount=] (punctuation based on number, closing just pi)

[font=] (Arial, Open Sans, Agency FB, Orbitron, Oswald, Merienda One // You may use custom fonts, as long as the font is installed on the computer. Ideally use [url=https://en.wikipedia.org/wiki/List_of_typefaces_included_with_Microsoft_Windows]windows default fonts[/url].
[size=] (xx-small, x-small, small, medium, large, x-large, xx-large)
[color=] (Use Hex Color Code for best results. I've seen word colors work as well, not ideal)

[url=]
[img=WxH] (Width, Hieght)
[email=]

[spoiler=] (drop box with optional title)
[sp2] (Blur spoiler)
[hr] (Horizontal Line)
[hrc]# (followed by hex code, Horizontal line colored)

[list] (list, no dot's)
[list=1] (number list)
[*] (used to indent on list)

[table] SEE AT BOTTOM
[tr] SEE AT BOTTOM
[td] SEE AT BOTTOM

[img float=] (left/right, Don't believe there's a way to scale it)
[img align=] (left/right, much closer to the edge of the post, doesn't float above items)

[p3d] (allows you to embed the model on the thread)
[video=] (You can use: Dailymotion, Facebook, LiveLeak, MetaCafe, Veoh, Vimeo, Youtube.

BBCode Function
Code:
        [table]
        [/table]
Bracket code for the entire table. Must be opened, contain TR and TD before being closed again.
Code:
        [tr]
        [/tr]
Bracket code for a row inside the table. Must be used before TD.
Code:
        [td]
        [/td]
Bracket code for a column content. Each TD represents one column. Every TR inside a TABLE must contain the same amount of TDs.



RE: MyCode on this forum,BBCode - Skorak - 12-13-2016

Looking over it those are the first coming to mind you are missing:
Code:
[pi amount=14] [/pi]
[sp2] [/sp2]
Text
Text

also img can do this:
Code:
[img float=right][img]
[img float=right]http://sig.grumpybumpers.com/host/skorak.gif?dateline=1470513872[/img]


RE: MyCode on this forum,BBCode - Corile - 12-13-2016

There's so few of them aren't there.


RE: MyCode on this forum,BBCode - Smokey - 12-14-2016

(12-13-2016, 03:11 PM)Corile Wrote: There's so few of them aren't there.

Actuallly there's quite alot when you consider the variations of each of the defaults

Like..


Image resize

So..
Code:
[img]https://s16.postimg.org/ijsdy4ek5/Spider.png[/img]

[img=100x33]https://s16.postimg.org/ijsdy4ek5/Spider.png[/img]
Makes..
[Image: Spider.png]
This size..
[Image: Spider.png]


RE: MyCode on this forum,BBCode - Officially_that_Guy - 12-14-2016

You forgot table. Quite useful for POBs and for BBCode explanation threads (HINT!).

BBCode Function
Code:
        [table]
        [/table]
Bracket code for the entire table. Must be opened, contain TR and TD before being closed again.
Code:
        [tr]
        [/tr]
Bracket code for a row inside the table. Must be used before TD.
Code:
        [td]
        [/td]
Bracket code for a column content. Each TD represents one column. Every TR inside a TABLE must contain the same amount of TDs.