Edit page OneAmigaPerChild/OneAmigaPerChild
[wiki.git] / EditingTips
1 Click **Raw Text** to see the markup for this page, and try it yourself in WikiSandBox.
2
3 ---
4
5 Our wiki syntax is deliberately similar to MoinMoin and WikiCreole.
6
7 Note: You should use formatting sparingly, WikiWikiWeb is about content, not look.
8 See WikiDesignPrinciples.
9
10 == Links ==
11
12 Names of pages have to LookLikeThis.
13 It's called a WikiName.
14 If you write a word that LooksLikeThis, it will be automatically turned into a link.
15
16 You can use URLs directly: http://www.codewiz.org/ ,
17 or you can make descriptive links with [[http://www.codewiz.org/ | some anchor text]].
18 Links to images will appear inline: http://www.w3.org/Icons/valid-css.png
19
20 {{GerryStich.jpg|Stich!}}
21
22 Anchored links also work with [[FrontPage|wiki pages]], [[/index.html | local paths]], and [[non_wiki_words]].
23
24 Image links: [[http://www.laptopgiving.org/|GiveOneGetOne.jpg]]
25
26 == Macros ==
27
28 <<TitleSearch>>
29 <<NonexistentMacro | param1 | param2 >>
30
31 Included text: <<Include | IncludedPage>>
32
33 == Block elements ==
34
35 Leave blank lines between paragraphs.
36
37 You can insert line\\
38 breaks\\
39 with double backslashes: \****\.
40
41 If you indent text
42   like this, then it is indented in the output
43     you can have multiple levels of indent
44
45 And if you put asterisks at the start of the line
46
47   * you get a 
48   * bulleted
49   * list
50     * which can also be indented
51       * to several levels
52
53 To insert program source without reformatting in a monospace font, use three curly braces:
54
55 {{{
56   public static void main(String[] args) {
57     out.println("Hello");
58   }
59 }}}
60
61 Just like that.
62
63
64 == Text Styles ==
65
66 To write **bold text**, enclose it in double stars: *////*some word*////*. \\
67 To write //italic text//, enclose it in double slashes: /****/some word/****/. \\
68 To write ##monospace text##, enclose it in double hashes: #****#some word#****#. \\
69 To write __underlined text__, enclose it in double underscores: _****_some word_****_. \\
70 To write ^^superscript text^^, enclose it in double carets: ^****^some word^****^. \\
71 To write ,,subscript text,,, enclose it in double commas: ,****,some word,****,. \\
72 ''Double'' and '''triple''' quotes are also supported for compatiblity with other wikis. \\
73 These keywords are highlighted: FIXME, TODO, DONE.
74
75 TIP: four consecutive stars (*////*////*////*) or slashes (/****/****/****/****) are a good
76 way to escape the syntax. :-)
77
78
79 == Rulers ==
80
81 ---
82 ----
83 -----
84 ------
85
86
87 == Headings ==
88
89 ===Level 2===
90 ====Level 3====
91 =====Level 4=====
92 ======Level 5======
93
94
95 == Tables ==
96
97 ||= Table Heading 1 ||= Table heading 2 ||= Table heading 3||
98 ||  Table cell 4    ||  Table cell 5    || Table cell 6    ||
99 ||  Table cell 7    ||  Table cell 8    || Table cell 9    ||
100
101
102 == Inline HTML ==
103
104 <div style="align:right; clear:right; font-size:24px; width:20em; max-width:60%; margin:1ex 0ex 1ex 1ex; border:3px outset #969; background-color:#faf; color: #f00; padding:.3em; text-align:center;">
105 You can use ##div##, ##span## and ##iframe## elements with any attribute, including
106 <span style="color: green">CSS</span>, of course.
107 </div>
108
109 == Access Control Lists ==
110
111 TODO: document
112
113 == Final Notes ==
114
115 Be aware that GeekiGeeki does not lock pages during editing, so if you pause for a long time on the edit screen you may overwrite somebody else's changes.