Difference between revisions of "Extension & Option Samples"
Jump to navigation
Jump to search
m |
|||
Line 1: | Line 1: | ||
Here are some simple examples of useful extensions on MagnetoWiki. Edit or View Source to see the markup. | Here are some simple examples of useful extensions on MagnetoWiki. Edit or View Source to see the markup. | ||
+ | |||
+ | ==Raw HTML== | ||
+ | |||
+ | MagnetoWiki allows raw HTML. This is a standard MediaWiki feature, not an extension. | ||
+ | |||
+ | <html> | ||
+ | <a href="#" onclick="alert('Hello! I am here!')">Click here.</a> | ||
+ | </html> | ||
==SimpleTable Sample== | ==SimpleTable Sample== |
Revision as of 14:38, 22 February 2009
Here are some simple examples of useful extensions on MagnetoWiki. Edit or View Source to see the markup.
Raw HTML
MagnetoWiki allows raw HTML. This is a standard MediaWiki feature, not an extension.
SimpleTable Sample
A | B | A xor B |
---|---|---|
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 0 |