07-08-2012, 12:18 PM
Introduction
On MyBB forums there are formatting options built in to the editor. When you post you may want text to be bold or italic or formatted in some other way. You can use My Code to make these formats. The built in functions are documented in the Help link(specifically the one I linked to above) so I won't go into detail about them. Most of them can be accessed through the posting interface by selecting the text to format and clicking the appropriate button. For more information on the built-in editor, see this tutorial: Spicing Up Your Posts
MyCode
MyCode is a document formatting mark-up language modeled from HTML- the language used for many web pages.
Generally you use an open and closing tag to indicate which text the MyCode will affect. For instance, to make some text bold using MyCode you would use the b tag (for bold):
Which would produce:
This text is unaffected. This text is affected and therefore bold.
Notice that the b tag is enclosed in square brackets [], this is to indicate that a tag is being used. Without the square brackets no text will be affected. Also, the closing tag has a forward slash in front of tag name to indicate the end of affected text.
Custom MyCode For This Forum
The basic MyCodes used in all MyBB forums is well-documented. The following is a list of MyCodes created specifically for this forum.
On MyBB forums there are formatting options built in to the editor. When you post you may want text to be bold or italic or formatted in some other way. You can use My Code to make these formats. The built in functions are documented in the Help link(specifically the one I linked to above) so I won't go into detail about them. Most of them can be accessed through the posting interface by selecting the text to format and clicking the appropriate button. For more information on the built-in editor, see this tutorial: Spicing Up Your Posts
MyCode
MyCode is a document formatting mark-up language modeled from HTML- the language used for many web pages.
Generally you use an open and closing tag to indicate which text the MyCode will affect. For instance, to make some text bold using MyCode you would use the b tag (for bold):
Code:
This text is unaffected. [b]This text is affected and therefore bold.[/b]
Which would produce:
This text is unaffected. This text is affected and therefore bold.
Notice that the b tag is enclosed in square brackets [], this is to indicate that a tag is being used. Without the square brackets no text will be affected. Also, the closing tag has a forward slash in front of tag name to indicate the end of affected text.
Custom MyCode For This Forum
The basic MyCodes used in all MyBB forums is well-documented. The following is a list of MyCodes created specifically for this forum.
Wildcard is awesome.