EditCode Instructions
What is EditCode ?
»

EditCode is a type of simplified HTML code, which means it is based on basic HTML tags, but simplified for ease of use. EditCode can be used to format your postings, add an email address, put in links or list items in order.

 
Make a link in your post
»

You can create a link in your post with this tag. Put the url between the tags
Syntax: [link]http://www.yourlink.com[/link]
Output: link

 
Add email address
»

Simply put the email address between the tags.
Syntax: [email]you@yourdomain.com[/email]
Output: email

 
Formatting text
»

Just like HTML basic tags, you can use bold/italic/underline/strike in your message.
Syntax: [b]your bold text goes here[/b]
Output: your bold text goes here

Syntax: [i]your italic text goes here[/i]
Output: your italic text goes here

Syntax: [u]your text will be underlined[/u]
Output: your text will be underlined

Syntax: [strike]line-through text looks like this ![/strike]
Output: line-through text looks like this !

*You can also nest your tags like the example below
Syntax: [b][i][u]Gee! There's lot of formattings here[/u][/i][/b]
Output: Gee! There's a lot of formattings here

 
Ordered vs Unordered List
»

When you list items in unordered with bullets, [list] is your tags.
Syntax:
 [list]
 [+]Item 1
 [+]Item 2
 [/list]

This tag produces:

  • Item 1
  • Item 2

How about ordered list with different styles ? Here is the tag:
Syntax:
 [list="1"]
 [+]Item 1
 [+]Item 2
 [/list]
 [list="A"]
 [+]Item 1
 [+]Item 2
 [/list]
 [list="a"]
 [+]Item 1
 [+]Item 2
 [/list]
 [list="I"]
 [+]Item 1
 [+]Item 2
 [/list]
 [list="i"]
 [+]Item 1
 [+]Item 2
 [/list]
This produces:This produces: This produces:This produces:This produces:
  1. Item 1
  2. Item 2
  1. Item 1
  2. Item 2
  1. Item 1
  2. Item 2
  1. Item 1
  2. Item 2
  1. Item 1
  2. Item 2

 
Quote someone
»

To quote someone, put their text between the tag as shown below
Syntax: [quote]Someone said something at sometime[/quote]
Output:

Someone said something at sometime
 
 
Common EditCode errors
»

One of the most common errors is when you open a tag and forget to close it like in these examples:
(none of these will work)
[link]http://www.yourlink.com
or
[email]you@yourdomain.com
[email]you@yourdomain.com[email](must be closed with a [/email] tag)
or even
[b]your bold text without closing