[Home]WikiHelp/WikiFormatExamples

TheSourcery | WikiHelp | RecentChanges | Preferences | Index | RSS

No diff available--this is the first major revision. (no other diffs)

Format Examples

'''This text is in bold''' This text is in bold
''This text is in italics'' This text is in italics
<tt>This text is monospaced</tt>
...and with a leading space
 This text is monospaced
This text is monospaced
...also can be done with a leading space
 This text is monospaced

:indented once
::indented twice
:::indented thrice
indented once
indented twice
indented thrice
= heading level one =
== heading level two ==
=== heading level three ===
==== heading level four ====
===== heading level five =====
====== heading level six ======

level one

level two

level three

level four

level five
level six
* item
* another item
** sub item
*** sub sub item
* yet another item
  • item
  • another item
    • sub item
      • sub sub item
  • yet another item
# item
# another item
## sub item
### sub sub item
# yet another item
  1. item
  2. another item
    1. sub item
      1. sub sub item
  3. yet another item
----
--------


Links suppression:
<nowiki>HomePage</nowiki>
HomePage
http://www.ibm.com/i/v11/m/en/lanim.gif

Code

This example uses the html pre tag to surround code:
<pre>
#include <stdio.h>

int main(int argc, char** argv) {
printf("HelloWorld");
}
</pre>

This example uses a space character at the beginning of the line:
 #include <stdio.h>
 
 int main(int argc, char** argv) {
   printf("HelloWorld");
 }

The above is problematic because blank lines are paragraph breaks and any CamelCase? in code gets recognized as Wiki links.
This example uses the html pre tag to surround code:

#include <stdio.h>



int main(int argc, char** argv) {

  printf("HelloWorld");

}

This example uses a space character at the beginning of the line:
 #include <stdio.h>

 int main(int argc, char** argv) {

   printf("HelloWorld?");

 }

Tables


||First  ||  Centered  ||        Right||

||A      ||  B         ||            C||

||||D                  ||            E||

||||||       Summary                  ||

Looks like:
First Centered Right
A B C
D E
Summary


TheSourcery | WikiHelp | RecentChanges | Preferences | Index | RSS
Edit text of this page | View other revisions
Last edited March 22, 2004 12:36 am by JonLambert (diff)
Search:
All material on this Wiki is the property of the contributing authors.
©2004-2006 by the contributing authors.
Ideas, requests, problems regarding this site? Send feedback.