Dating
Lighthouse: Wikka Formatting Guide
Datingbikini Anak Anjing Dijual Murah Dating Bikini
Datingbikini Anak Anjing Dijual Murah Dating Bikini
~a)
Line
one
~a) Line two
- L
ine o
ne
- Line two
Ordered lists using roman numerals
~I) Line one
~I) Line two
- Line one
- Line two
Ordered lists using lowercase roman numerals
~i) Line one
~i) Line two
- Line one
- Line two
6. Inline comments
To format some text as an inline comment, use an indent ( ~, a tab or 4 spaces) followed by a &.
Example:
~& Comment
~~& Subcomment
~~~& Subsubcomment
7. Images
To place images on a page, you can use the image action.
Example:
Links can be external, or internal links. You don't need to enter a link at all, and in that case just an image will be inserted. You can use the optional classes left and right to float images left and right. You don't need to use all those attributes, only url is required while alt is recommended for accessibility.
8. Links
To create a link to a page you can use any of the following options:
- type a Name:
FormattingRules
FormattingRules
- add a forced link surrounding the page name by [[ and ]] (everything after the first space will be shown as description):
[[SandBox Test your formatting skills]]
Test your formatting skills
[[SandBox 沙箱]]
沙箱
- add an image with a link (see instructions above).
To link to external pages, you can do any of the following:
- type a URL inside the page:
tt>
Jenna's Home Page
[[mail@example.com Write me!]]
Write me!
- add an image with a link (see instructions above);
- add an inter link (browse the list of available inter tags):
Pedia:Wikka
Pedia:Wikka
:CSS
:CSS
Thesaurus:Happy
Thesaurus:Happy
9. Tables
The
table action has been deprecated as of Wikka version 1.2 and has been replaced with the syntax that follows. Please visit the
Wikka documentation server for information about the older
table action.
Tables can be created using two pipe (||) symbols. Everything in a single line is rendered as a table row.
Example:
||Cell 1||Cell 2||
Header cells can be rendered by placing an equals sign between the pipes.
Example:
|=|Header 1|=|Header 2||
||Cell 1||Cell 2||
| Header 1 | Header 2 |
| Cell 1 | Cell 2 |
Row and column spans are specified with x: and y: in parentheses just after the pipes.
Example:
|=| |=|(x:2)Columns||
|=|(y:2) Rows||Cell 1||Cell 2||
||Cell 3||Cell 4||
| | Columns |
| Rows | Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
Many additional features are available using table markup. A more comprehensive table markup guide is available on this server's TableMarkup page. A complete syntax reference is available on this server's TableMarkupReference page.
10. Colored Text
Colored text can be created using the color action:
Example:
{}}
This is a test.
You can also use hex values:
Example:
{}}
This is another test.
Alternatively, you can specify a foreground and background color using the fg and bg parameters (they accept both named and hex values):
Examples:
{}}
This is colored text on colored background
{}}
This is colored text on colored background
11. Floats
To create a left floated box, use two < characters before and after the block.
Example:
<<Some text in a left-floated box hanging around<< Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler.
Some text in a left-floated box hanging around
Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler.
To create a right floated box, use two > characters before and after the block.
Example:
>>Some text in a right-floated box hanging around>> Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler.
Some text in a right-floated box hanging around
Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler. Some more text as a filler.
Use ::c:: to clear floated blocks.
12. Code formatters
You can easily embed code blocks in a page using a simple markup. Anything within a code block is displayed literally.
To create a generic code block you can use the following markup:
%% This is a code block %%.
To create a code block with syntax highlighting, you need to specify a code formatter (see below for a list of available code formatters).
%%(php)
<?php
echo "Hello, World!";
?>
%%