Information
Forum Markup Help
In the forums, we allow some simple markup that allows you to add formatting to your posts. First, there's some simple markers you can put around words or sentences:
If you type this: | It looks like this: |
---|---|
*bold* |
bold |
/italic/ |
italic |
_underscore_ |
underscore |
~~strikethrough~~ |
strikethrough |
^superscript^ |
superscript |
,,subscript,, |
subscript |
`inline code` |
inline code |
These can of course also be combined however you want:
/A *bold* word in italics/ |
A bold word in italics |
*You can ~~strike~~ out one word* |
You can strike out one word |
_Or /emphasize/ one word_ |
Or emphasize one word |
You can also create headings if you want to structure your post:
=Heading 1 |
Heading 1 |
==Heading 2 |
Heading 2 |
===Heading 3 |
Heading 3 |
====Heading 4 |
Heading 4 |
=====Heading 5 |
Heading 5 |
======Heading 6 |
Heading 6 |
You can easily make a horizontal ruler:
---- |
|
There's support for making both unordered and ordered lists:
* Games * Forums * Users |
|
# First # Second # Third |
|
URLs will automatically be made clickable:
Come visit http://fltron.com for fun! |
Come visit http://fltron.com for fun! |
Come visit [http://fltron.com Fltron] for fun! |
Come visit Fltron for fun! |
The best feature though is that you can now post code snippets and get them formatted and properly highlighted. Surround your code with triple curly bracers, and put a language identifier before the first bracer. We support these languages:
as{{{ }}} |
ActionScript 2 and 3 |
c#{{{ }}} |
C-Sharp |
js{{{ }}} |
Javascript |
css{{{ }}} |
Cascading Style SheetsCascading Style Sheets |
xml{{{ }}} |
XML and HTMLXML and HTML |
sql{{{ }}} |
Database SQL |
Here are some examples of what this looks like:
as{{{ //This is a little test NonobaAPI.Test(stage, text) { if (text != "test") { trace(text); } } }}} |
|
xml{{{ <game name="Test"> <score user="Annie">18</score> <score user="Brad">17</score> </game> }}} |