Difference between revisions of "Markup Examples"

From Whirlwind eCommerce Wiki
Jump to: navigation, search
Line 26: Line 26:
 
Use pre to do this <even include tags> and all is ok!
 
Use pre to do this <even include tags> and all is ok!
 
</pre>
 
</pre>
 +
 +
==code==
 +
<pre>
 
<source lang="php">
 
<source lang="php">
 
// how about some juicy code
 
// how about some juicy code
Line 32: Line 35:
 
// end code
 
// end code
 
</source>
 
</source>
 +
</pre>
  
 
[[Category:Category Text|{{PAGENAME}}]]
 
[[Category:Category Text|{{PAGENAME}}]]

Revision as of 03:52, 30 September 2008

force table of contents (b/c by default only appears for sections > 3 headers)


force table of contents to appear HERE

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

<source lang="php">
// how about some juicy code
$var = 'value';
echo $var;
// end code
</source>