(New page: There are several differences between Media wiki and restructured text. They are displayed on this page Unfortunately, the nowiki tag is currently crashing the server, so the source text...) |
(Copied help from old kiwi and tried to translate to MediaWiki) |
||
Line 3: | Line 3: | ||
Unfortunately, the nowiki tag is currently crashing the server, so the source text cannot be displayed. | Unfortunately, the nowiki tag is currently crashing the server, so the source text cannot be displayed. | ||
− | == Referencing other pages == | + | == Simple formatting == |
+ | This will be a mess of examples like | ||
+ | * Desired result: how to make things ''italics'' or '''bold''' or ^underline^ | ||
+ | * reStructured Text: how to make things *italics* or **bold** or ^underline^ | ||
+ | * Mediawiki: how to make things ''italics'' or '''bold''' or ^underline^ | ||
+ | |||
+ | == Referencing other pages (Internal Links) == | ||
* Desired result: [[ECE662_OldKiwi]] | * Desired result: [[ECE662_OldKiwi]] | ||
Line 9: | Line 15: | ||
* Mediawiki: [[ECE662_OldKiwi]] | * Mediawiki: [[ECE662_OldKiwi]] | ||
− | == | + | == Linking to External Sites == |
* Desired result: [http://www.google.com Google!] | * Desired result: [http://www.google.com Google!] | ||
* reStructured Text: (Doesn't compile) | * reStructured Text: (Doesn't compile) | ||
* Mediawiki: [http://www.google.com Google!] | * Mediawiki: [http://www.google.com Google!] | ||
+ | |||
+ | |||
+ | == Headings are good == | ||
+ | |||
+ | === So are smaller headings === | ||
+ | |||
+ | If you want to link to another page in the wiki you just do it like this: | ||
+ | |||
+ | [[HKN QE_OldKiwi]] | ||
+ | |||
+ | Links to external pages can be done like this: | ||
+ | |||
+ | mediaWiki is '''nice'''. It has its own [http://www.mediawiki.org/wiki/MediaWiki webpage]. | ||
+ | |||
+ | You can even make a table: | ||
+ | |||
+ | {| border=1 | ||
+ | |- | ||
+ | | colspan=2| Inputs | ||
+ | | Output | ||
+ | |- | ||
+ | ! A !! B !! A or B | ||
+ | |- | ||
+ | | False || False || False | ||
+ | |- | ||
+ | | True || False || True | ||
+ | |- | ||
+ | | False || True || True | ||
+ | |- | ||
+ | | True || True || True | ||
+ | |} | ||
+ | |||
+ | If you put things in quotes like this then they will get displayed exactly: | ||
+ | |||
+ | (Currently crashes Mediawiki...:-( ) | ||
+ | |||
+ | ``This will be a mess of examples like how to make things ''italics'' or '''bold'''`` | ||
+ | |||
+ | As opposed to this: | ||
+ | |||
+ | This will be a mess of examples like how to make things ''italics'' or '''bold''' | ||
+ | |||
+ | You can do bullets like: | ||
+ | * This thing | ||
+ | * This other thing | ||
+ | ** '''This really important third thing''' | ||
+ | ** '''Notice you use more stars, not more space.... ''' | ||
+ | |||
+ | Here are some even more awesome bullets | ||
+ | |||
+ | * a bullet point using "*" | ||
+ | ** a sub-list using "**" | ||
+ | *** yet another sub-list "***" | ||
+ | *** another item | ||
+ | |||
+ | |||
+ | So what if you want to write an equation... LaTex | ||
+ | |||
+ | <math> P(X = i) = P(Y = i) = \frac{1}{2^i}, i = 1,2,3,...</math> | ||
+ | |||
+ | |||
+ | Here are some more headings: | ||
+ | |||
+ | == Chapter 1 Title == | ||
+ | === Section 1.1 Title === | ||
+ | ==== Subsection 1.1.1 Title ==== | ||
+ | === Section 1.2 Title === | ||
+ | == Chapter 2 Title == | ||
+ | And that's the end! |
Revision as of 22:20, 9 March 2008
There are several differences between Media wiki and restructured text. They are displayed on this page
Unfortunately, the nowiki tag is currently crashing the server, so the source text cannot be displayed.
Contents
Simple formatting
This will be a mess of examples like
- Desired result: how to make things italics or bold or ^underline^
- reStructured Text: how to make things *italics* or **bold** or ^underline^
- Mediawiki: how to make things italics or bold or ^underline^
Referencing other pages (Internal Links)
- Desired result: ECE662_OldKiwi
- reStrucuted Text: [ECE662]
- Mediawiki: ECE662_OldKiwi
Linking to External Sites
Headings are good
So are smaller headings
If you want to link to another page in the wiki you just do it like this:
Links to external pages can be done like this:
mediaWiki is nice. It has its own webpage.
You can even make a table:
Inputs | Output | |
A | B | A or B |
---|---|---|
False | False | False |
True | False | True |
False | True | True |
True | True | True |
If you put things in quotes like this then they will get displayed exactly:
(Currently crashes Mediawiki...:-( )
``This will be a mess of examples like how to make things italics or bold``
As opposed to this:
This will be a mess of examples like how to make things italics or bold
You can do bullets like:
- This thing
- This other thing
- This really important third thing
- Notice you use more stars, not more space....
Here are some even more awesome bullets
- a bullet point using "*"
- a sub-list using "**"
- yet another sub-list "***"
- another item
- a sub-list using "**"
So what if you want to write an equation... LaTex
$ P(X = i) = P(Y = i) = \frac{1}{2^i}, i = 1,2,3,... $
Here are some more headings:
Chapter 1 Title
Section 1.1 Title
Subsection 1.1.1 Title
Section 1.2 Title
Chapter 2 Title
And that's the end!