Markup Comparisons
Atlas Quest supports three different styles for decorating your text: HTML, BbCode, and wiki—each with their own advantages and disadvantages. This page lets you compare and contrast the different options, which you can set in your preferences.
| HTML Markup | BbCode Markup | Wiki Markup | |||||
|---|---|---|---|---|---|---|---|
| bold | <b>bold</b> | [b]bold[b] | **bold** | ||||
| italics | <i>italics</i> | [i]italics[/i] | //bold// | ||||
| underline | <u>underline</u> | [u]underline[/u] | __underline__ | ||||
| subscript | <sub>subscript</sub> | [sub]subscript[/sub] | ,,subscript,, | ||||
| superscript | <sup>superscript</sup> | [sup]superscript[/sup] | ^^superscript^^ | ||||
| monospace | <tt>monospace</tt> | [tt]monospace[/tt] | [tt]monospace[/tt] | ||||
| <quote>Quoted text</quote> | [quote]Quoted text[/quote] | {{Quoted text}} | |||||
| Pre-formatted text | <pre>Pre-formatted</pre> | [code]Pre-formatted[/code] | [pre]Pre-formatted[/pre] | ||||
| Horizontal Rule | <hr /> | [hr] | ---- | ||||
Ordered List
| <ol> <li>item</li> </ol> | [ol] [*]item [/ol] | # item | ||||
Unordered List
| <ul> <li>item</li> </ul> | [ul] [*]item [/ul] | * item | ||||
Header 1 | <h1>Header 1</h1> | [h1]Header 1[/h1] | + Header 1 | ||||
Header 2 | <h2>Header 2</h2> | [h2]Header 1[/h2] | ++ Header 2 | ||||
Header 3 | <h3>Header 3</h3> | [h3]Header 1[/h3] | +++ Header 3 | ||||
Header 4 | <h4>Header 4</h4> | [h4]Header 1[/h4] | ++++ Header 4 | ||||
Header 5 | <h5>Header 5</h5> | [h5]Header 1[/h5] | +++++ Header 5 | ||||
Header 6 | <h6>Header 6</h6> | [h6]Header 1[/h6] | ++++++ Header 6 | ||||
| Named Link: Atlas Quest | <a href="http://www.atlasquest.com">Atlas Quest</a> | [url=http://www.atlasquest.com]Atlas Quest[/url] | [http://www.atlasquest.com Atlas Quest] | ||||
| Unnamed Link: http://www.atlasquest.com | <a href="http://www.atlasquest.com">http://www.atlasquest.com</a> — OR — [http://www.atlasquest.com] | [url]http://www.atlasquest.com[/url] — OR — [http://www.atlasquest.com] | [http://www.atlasquest.com] | ||||
| Image: | <img src="http://www.atlasquest.com/images/icons/boxes/kidfriendly.gif" alt="Kid Friendly" /> | [img=http://www.atlasquest.com/images/icons/boxes/kidfriendly.gif]Kid Friendly[/img] | [img:http://www.atlasquest.com/images/icons/boxes/kidfriendly.gif Kid Friendly] | ||||
Tables:
| <table> <tr><td>Row 1, Col 1</td><td>Row 1, Col 2</td></tr> <tr><td>Row 2, Col 1</td><td>Row 2, Col 2</td></tr> </table> | [table] [tr][td]Row 1, Col 1[/td][td]Row 1, Col 2[/td][/tr] [tr][td]Row 2, Col 1[/td][td]Row 2, Col 2[/td][/tr] [/table] | || Row 1, Col 1 || Row 1, Col 2 || || Row 2, Col 1 || Row 2, Col 2 || | ||||
| Blockquote | <blockquote>Text here</blockquote> | [blockquote]Text here[/blockquote] | [blockquote]Text here[/blockquote] |