Wiki Markup

Currently supported markup is listed below. This page is written entirely in native markup.

Unlike most wiki's, this software uses much simpler and easier to read markup, based on UBB forum markup / simple HTML.

Notes:

• Either [ ] or < > may be used when specifying tags (e.g. [b] or <b>), this allows compliance with HTML markup, for those who find it more familiar.

• When using HTML style markup, you cannot insert additional parameters (e.g. <table> is permitted, but <table background="blue"> will not work unless Advanced HTML support has been enabled by the site admin).

• Tags will be ignored (and just printed as they are) if you put a ! symbol in front of the tag name, useful if you are writing documentation on how to use wiki markup or display HTML on a page.

 
Tag Example Description
[b] [/b] Bold Bold font styling
[i] [/i] italic Italic font styling
[u] [/u] underline Underline font styling
[center] [/center]
center
Center text align
[right] [/right]

right

Right text align
[left] [/left]

left

Lef text align
[big] [/big] big Make text bigger
[small] [/small] small Make text smaller

  [table]
  [tr]
     [td] one [/td] [td] two [/td]
   [/tr]
   [tr]
    [td] three [/td] [td] four [/td]
   [/tr]
  [/table]
 

   
one two
three four
 

  HTML style table markup

  [tr] = table row
  [td] = table data (cell)
 
[hr]  
Horizonal line
[br] N/A Line break
* bullet point • bullet point Simple bullet point

  [ul]
   [li] one [/li]
    [li] two
     [ul] [li] three [/li] [/ul]
   [/li]
  [/ul]
 
  • one
  • two
    • three

Bullet pointed list (can be nested)

Syntax comes from HTML's 'unordered list' / 'list item' markup.
 
[h1] [/h1]

heading 1

Heading 1
[h2] [/h2]

heading 2

Heading 2
[h3] [/h3]

heading 1

Heading 3
[h4] [/h4]

heading 4

Heading 4
[code] [/code]
code() { }; 
For quoting code
[url]www.google.com[/url]
[url=www.google.com]Google[/url]
www.google.com
Google
URL (http:// optional)

Note: Local URL's must begin / or ./
[img]www.google.com/images/logo_sm.gif[/img]
[img=www.google.com/images/logo_sm.gif]Google Logo[/img]

Embed image (http:// optional)

Note: Local URL's must begin / or ./
[link]Wiki_Markup[/link]
[link=Wiki_Markup]Wiki Markup[/link]
Wiki_Markup
Wiki Markup Guide
Local wiki links
[iframe]http://www.google.com/[/iframe] N/A Replaces the entire page with an iframe of the remote URL. Useful way of embedding content that can't be easily intergrated normally.

Will render oddly if the remote site has a transparent background or no background. Requires Javascript to be enabled on the client.
[item]Staff of Conjuring[/item] [item]Staff of Conjuring[/item] Retreives WoW item information and displays it when you hover the mouse over the link (by integrating wtih itemstats & overLIB).

Shown here is the best item in the game. Bonus points if you know why it's the best.


TODO:

 • Auto-indenting of text when using simple bullet points.

 • Alternative, simple table markup format (e.g. CSV based).

 • Font styling with [color=red][/color] and [size=18][/size] tags.

 • BUG: Extra return character currently inserted after [h1] / [h2] / [hr] (etc) - to be fixed.

 • Add historical views of pages (and a 'revert' mechanism) and history.

 • Add file upload mechanism (e.g. for Gallery)

 • Add automatic 'table of contents' when there are multiple headings.

 • Breadcrumb Trail

 • Remember current page when logging on.

Please add any additional features desired to this list.