Basically you can just type plain text.
Click 'Edit This Document' to see the code for this page. You can paste source code inside <code></code> tags.
A line of text. New line, new paragraph. Another paragraph\\ with multiple lines\\ using forced line breaks.
A line of text.
New line, new paragraph.
Another paragraph
with multiple lines
using forced line breaks.
bold, italic, underline, strikethrough, superscript and bold-italic.
```literal **text** without //formatting//```literal **text** without //formatting//
* This is a list * Of Some Items ** A subitem ** another subitem
:indent text ::just a bit more :::and even more
||**First**||**Last**|| ||John||Smith|| ||Jane||Smith||
| First | Last |
| John | Smith |
| Jane | Smith |
Google [http://www.google.com/], Apple [http://www.apple.com], [http://www.w3.org World Wide Web Consortium]
Google [1], Apple [2], [World Wide Web Consortium]
Pay attention to the spaces. If you are missing a space, the heading won't show up. If you don't put a space at the beginning of a line, the bold text will instead appear as a bullet.
You can insert code into this wiki using standard html <code></code> tags (each tag must be on a new line).
void function DoStuff ()
{
unsigned long myLen = random();
char *myPtr = malloc(myLen ^ (myLen >> 32U));
free(myPtr);
}