Difference between revisions of "Markup Examples"
From Whirlwind eCommerce Wiki
| Line 22: | Line 22: | ||
==Section Title== | ==Section Title== | ||
another section with more text | another section with more text | ||
| + | |||
| + | <pre> | ||
| + | Use pre to do this <even include tags> and all is ok! | ||
| + | </pre> | ||
| + | <source lang="php"> | ||
| + | // how about some juicy code | ||
| + | $var = 'value'; | ||
| + | echo $var; | ||
| + | // end code | ||
| + | </source> | ||
[[Category:Category Text|{{PAGENAME}}]] | [[Category:Category Text|{{PAGENAME}}]] | ||
Revision as of 03:32, 30 September 2008
File:Http://www.mediawiki.org/w/MediaWiki logo.png
ImageCaption here
force table of contents (b/c by default only appears for sections > 3 headers)
force table of contents to appear HERE
Contents
hide table of contents even when over 3 sections
Linking:
This is a link
Section Title
- subsection
- indented text
- bulletted text
- indented bulleted text
bold text here
Section Title
another section with more text
Use pre to do this <even include tags> and all is ok!
// how about some juicy code $var = 'value'; echo $var; // end code