This article describes to code you use to beautify your pages such as bold/italic/underlined text, images, tables, bullets, numbering and headings
Text
Bolding markup: [b:Bolding Text]
Bolding effect: Bolding Text
Italic markup: [i:Italic Text]
Italic effect: Italic Text
Underline markup: [u:Underline Text]
Underline effect: Underline Text
Code markup:[code:<html></html>]
Code effect:<html></html>
Right markup:[right:Text is right aligned]
Right effect:
Text is right aligned
Headings
Major Heading Markup: == Major Heading Here ==
Minor Heading Markup: -- Minor Heading Here --
Note: Major headings using H2 html tag. Minor use H4 html tag
Bullets & Numbering
To make a bulletted list simply add a
(asterisk or shift 8) before where you want the bullet. Similarly use a
(hash or shift 3) for numbered lists.Bullet & Numbering Markup:
Bullet 1
Indent two
Bullet 3
Numbered First
Numbered Second
Numbered ThirdBullet & Numbering Effect:
- Bullet 1
- Indent two
- Bullet 3
- Numbered First
- Numbered Second
- Numbered Third
Hyperlinks
Hyperlinks can be made to other pages or external documents.
Hyperlink markup: [pagename]
Hyperlink effect: pagename
Titled hyperlink markup: [pagename|Title Name]
Titled hyperlink effect: Title Name
External hyperlink markup: [http://www.google.com|Its Google!]
External hyperlink effect: Its Google!
Images
You can upload an image or file by clicking the browse button and choosing a file then selecting "Upload"
Image markup: [image:ic_paper.gif]
Image effect:

Image alignment markup: [image:ic_paper.gif||center]
Other options : left, right, center
Image alignment effect:

Image hyperlink markup: [image:ic_paper.gif|http://www.google.com|center]
Image hyperlink effect:

Tables
HTML Tables arent that easy so we've made them a little simpler.
Table Markup:
[ts:Heading 1|Heading 2|Final Heading]
[tr:First row|Test1|Test2]
[te:Footer|Footer Col 2|Last One]
Table Effect:
| Heading 1 | Heading 2 | Final Heading |
| First row | Test1 | Test2 |
| Footer | Footer Col 2 | Last One |
Inserting pages
You can insert another wiki page into a wiki page using the following markup:
[insert:pagename]
This will insert in place the page called pagename
RSS
RSS Feeds are a great way to produce news articles from pages. When you save a page that has RSS markup a file with the same name as the page but with a .xml file extension will be saved in the data (or "offline") folder.
Here is the markup:
[rssChannelTitle:channelname] - Title of the RSS Channel is channelname
[rssChannelDescription:description] - Description of the RSS Channel is description
[rssChannelLink:linkurl] - Url to the rss feed
[rssTitle:titlehere] - Title of the RSS item is titlehere
[rssPubDate:02/02/2006 9:20am] - Publish date of the RSS item is 02/02/2006 at 9:20am. This format is dependent on the short date format and time format for the default profile on the web server PC. This will usually be american date format unless specified otherwise
[rssLink:linkurl] - Url for this rss item. This link should be unique especially if you do not specify a guid as the linkurl will be copied to the guid tag.
[rssDescription:blar] - Description of the RSS item is blar. This will also signify the end of the RSS item (so any RSS markup associated with this item should be before it)
[rssFeed:Feed Name|Feed url] - This tag will produce the necessary link tag to the rss feed which will be displayed in firefox or rss capable browsers.
Miscelaneous
Breaking between sections
Normally you would simply put a ENTER to break apart two lines. With this Wiki this will only break apart the wiki markup. This makes it easier to read the wiki markup without affecting the layout of the wiki page. To actually break between two sections put a SPACE and then a ENTER
Not using wiki markup
At some point you may want to use some of the characters that are usually reserved for wiki markup. To use for example square brackets around something simply put a ~ after the first square bracket. Eg [~blar foo]
You can also use the tag nowiki in the same way as HTML around larger sections. This is especially useful for source code