Difference between revisions of "Markup Examples"
From Whirlwind eCommerce Wiki
Line 30: | Line 30: | ||
<source lang="php"> | <source lang="php"> | ||
+ | <?php | ||
// how about some juicy code | // how about some juicy code | ||
$var = 'value'; | $var = 'value'; | ||
echo $var; | echo $var; | ||
// end code | // end code | ||
+ | ?> | ||
</source> | </source> | ||
[[Category:Category Text|{{PAGENAME}}]] | [[Category:Category Text|{{PAGENAME}}]] |
Revision as of 03:54, 30 September 2008
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!
code
<?php // how about some juicy code $var = 'value'; echo $var; // end code ?>