Wakka Formatting Guide
Click the "Edit this page" link at the bottom of any page to edit it, or just double-click anywhere on the page.
You can test your formatting skills in the
SandBox.
To create a new page, first create a link then click the question mark that will appear automatically after your new link when you save. To create a link, string words together with interior capitalization
LikeThis. Other features are covered in the
UserGuide∞.
Basic formatting:
**I'm bold text!**
I'm bold text!
//I'm italic. text.//
I'm italic. text.
And I'm __underlined__!
And I'm underlined!
##monospace (fixed width) text##
monospace text
''note''
note
Links:
Use square brackets to change the text of the link, or to force things other than a
WikiWord to become links.
Headers:
====== Really big header ======
Really big header
===== Rather big header =====
Rather big header
==== Medium header ====
Medium header
=== Not-so-big header ===
Not-so-big header
== Smallish header ==
Smallish header
Horizontal separator:
----
Forced line break:
---
Indent text using the Tab key. You can also use indented bulleted/numbered lists:
- bulleted list
bulleted list
Line two
1) numbered list
- numbered list
- Line two
A) Using uppercase characters
- Using uppercase characters
- Line two
a) Using lowercase characters
- Using lowercase characters
- Line two
i) using Latin numbers
- using Latin numbers
- Line two
Anything between 2 sets of double quotes is presented exactly as typed.
- quot;"Notice that this has **not changed** to bold""
Entity literals:
Entering < into Wiki (or any web page) actually displays the character <. There are entities for every character that has special meaning in HTML: > & etc.
%% Embed Code Here %%
int main(int arc,char **argv)
{
printf("Hello, %s!
", (argc>1) ? argv[1] : "World");
return 0;
}
Example embedding PHP code
(Do not forget the <?php open tag if you want syntax colouring):
%%(php) %%
There are no comments on this page. [Add comment]