From EnviroWiki
Contents |
Adding a headline
There are different headline levels. This determines the size of the heading. The text to signify a headline is an equals sign, "=", before and after the headline text. The amount of equals signs depends on the size of headline you want to use. The standard headline level is a Level 2 headline.
For example:
- To add in a Level 2 heading, type == Level 2 ==. This will give you the headline:
Level 2
- To add in a Level 3 heading, type === Level 3 ===. This will give you the headline:
Level 3
- To add in a level 4 heading, type ==== Level 4 ====. This will give you the headline:
Level 4
- To add in a level 5 heading, type ===== Level 5 =====. This will give you the headline:
Level 5
- To add in a level 6 heading, type ====== Level 6 ======. This will give you the headline:
Level 6
Bold and italic text
Making text bold or italic is very easy on EnviroWiki. It involves adding in inverted commas " ' " before and after the text you want to format. Add in three inverted commas for bold text, two inverted commas for italic text and five inverted commas for bold and italic text.
For example:
- To make text bold, type ''' bold text ''' . This will give you the formatted text; bold text
- To make the text italic, type '' italic text ''. This will give you the formatted text; italic text
- To make the text bold AND italic, type ''''' bold and italic text '''''. This will give you the formatted text; bold and italic text
Adding an external link
Almost every wiki entry will have a link to a source outside of EnviroWiki. This is what is called an 'external link'. To add an external link on a wiki entry, you use (one set of) square brackets before and after the URL of the website that you would like to link to.
When linking to an external website, the link on your wiki entry can be displayed in different forms. The standard way the link is displayed is as a number, e.g. [1]. If you would like a description, or the URL itself to be displayed, you must type it within the square brackets, after the URL and with one space between them.
For example:
- To display the link as a number (useful for listing more than one source), type [http://www.changeiscoming.org.uk]. This will show the link as; [1]
- To display the link as the URL of the website you are wishing to link to, type [http://www.changeiscoming.org.uk http://www.changeiscoming.org.uk] . This will show the link as; http://www.changeiscoming.org.uk
- To display the link as the name of the website, or any other text (for example 'to view more', 'for more details', 'original source' etc.), type [http://www.changeiscoming.org.uk ChiC homepage].
This will show the link as; ChiC homepage
Note: Don't forget to use the full web URL of the site you are linking to (i.e. include the http:// prefix).
Adding an internal link
If, at some point during your wiki entry, you mention something that has its own EnviroWiki entry, you may wish to link to it. Because it is a page within EnviroWiki, you can use an 'internal' link. To add an internal link, you place the name of the wiki entry that you wish to link to within TWO (sets of) square brackets.
Like the external link, there are different ways of displaying the internal link. You can display the name itself of the page you are linking to by simply placing the name of the page in square brackets. Alternatively you can display a description that is different from the name of the targeted page. You do this by placing the description within the square brackets, after the name of the targeted wiki entry and with a vertical line, "|", between them.
For example:
- To display the name of the targeted wiki entry, simply type [[Main Page]]. This will show the link as; Main Page
- To display a description of the wiki entry (or any other words that you choose), simply type [[Main Page|Description]]. This will show the link as; Description
Bulleted lists
Bulleted lists are very easy to construct on EnviroWiki. They consist of typing asterixes. The amount of asterixes added to the beginning of the text signifies the level of the text within the list. If you add one asterix to the beginning of each line of text, it will show as a bulleted list. If you type two asterixes to one of the lines, it will appear as a sub entry of the line of text above.
For example:
* one
* two
** two point one
* three
** three point one
*** three point one point one
* four
This will appear as the following:
- one
- two
- two point one
- three
- three point one
- three point one point one
- three point one
- four
Numbered lists
Numbered lists are very similar to bulleted lists. The structure is the same, but instead of using an asterix, you use a hash sign.
For example:
# one
# two
## two point one
# three
## three point one
### three point one point one
## three point two
# four
This should appear as the following:
- one
- two
- two point one
- three
- three point one
- three point one point one
- three point two
- three point one
- four
Tables
Basic table
- When adding tables to your wiki entry, you can make them as basic or as sophisticated as you like. To begin a table, use the "{" sign, followed by a horizontal line, "|".
- Always begin a new row with a horizontal line ("|"). To signify a new column, put two horizontal lines between the text that you would like to include in each cell ("||").
- In between each row, you need to enter in a horizontal line and a dash, "|-", to signify a new row.
- To close a table, type "|}" on a new line.
For example, typing;
{|
|-
| a1 || b1 || c1
|-
| a2 || b2 || c2
|}
would give you the following table:
| a1 | b1 | c1 |
| a2 | b2 | c2 |
Formatted table
If you would like your table to look a little nicer, you can add in some formatting criteria. Feel free to copy the code below and use it as a template.
For example, typing;
{| border="1" cellpadding="4" cellspacing="1"
!width="200"|
=== a1 ===
!width="225"|
=== b1 ===
!width="50"|
=== c1 ===
|-
| a2 || b2 || c2
|-
| a3 || b3 || c3
|}
would give you the following table:
|
a1 |
b1 |
c1 |
|---|---|---|
| a2 | b2 | c2 |
| a3 | b3 | c3 |
Existing tables templates - Local Information Table
On each Local Action category (currently for Greater London boroughs and UK counties) there is a table with an overview of information about the local area. See an example of a Local Action information table
Feel free to copy and paste the code below to create a new information table.
Please note that the row headings provided for each category are suggestions only. Feel free to amend them with headings you consider more suitable.
The following code;
{| border="1" cellpadding="4" cellspacing="1" background="#f5fffa"
!width="145"|
=== Table Title ===
!width="150"|
|-
|a1|| b1
|-
|a2|| b2
|-
|a3|| b3
|}
would give you the following table:
|
Table Title | |
|---|---|
| a1 | b1 |
| a2 | b2 |
| a3 | b3 |

