How to Post Code on the Forum
Posting code is easy.
Short Snippets
If you have a short snippet just include the code between these two wiki-syntax tags :
[[code]]
[[/code]]
For example, this
[[code]]
someFunction("blarg!")
[[/code]]
appears like this :
someFunction("blarg!")
Longer Code
Collapsible Code Blocks
You can create a collapsible code block using this syntax :
[[collapsible show="Show Code +" hide="Hide Code -" hideLocation="both"]]
[[code]]
; code here
[[/code]]
[[/collapsible]]
This looks like :
Tabs
You can post longer snippets as above, but to save space you can use [[tabview]]. The format is :
[[tabview]]
[[tab Post]]
My code is blah blah.
[[/tab]]
[[tab Code]]
[[code]]
' don't kill ma!
If person_entering_door = mom Then
KillThem False
Else
KillThem True
EndIf
[[/code]]
[[/tab]]
[[/tabview]]
This appears as :