| '''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 |
|
||||||||||||
|
= heading level one = == heading level two == === heading level three === ==== heading level four ==== ===== heading level five ===== ====== heading level six ====== |
level onelevel twolevel threelevel fourlevel fivelevel six |
||||||||||||
|
* item * another item ** sub item *** sub sub item * yet another item |
|
||||||||||||
|
# item # another item ## sub item ### sub sub item # yet another item |
|
||||||||||||
|
---- -------- |
|
||||||||||||
|
Links suppression: <nowiki>HomePage</nowiki> |
HomePage | ||||||||||||
| http://www.ibm.com/i/v11/m/en/lanim.gif |
|
||||||||||||
CodeThis 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:
|
||||||||||||