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.


== Heading ==

Heading


=== Subheading ===

Subheading


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//**.

bold, italic, underline, strikethrough, superscript and bold-italic.


```literal **text** without //formatting//```
literal **text** without //formatting//
((Creating Links))

Creating Links


* This is a list
* Of Some Items
** A subitem
** another subitem

:indent text
::just a bit more
:::and even more
indent text
just a bit more
and even more

||**First**||**Last**||
||John||Smith||
||Jane||Smith||
FirstLast
JohnSmith
JaneSmith

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);
}