This wiki uses CommonMark Markdown syntax.
All text is entered as plain text and will be converted to HTML entities as
necessary. This means that <, >, &, and so on are converted for you.
Hit "return" twice to make a paragraph break. A single return does not
create a new paragraph.
| Markup | Result |
|---|---|
*emphasis text* |
emphasis text |
**strong text** |
strong text |
***emphasis and strong*** |
emphasis and strong |
`teletype text` |
teletype text |
~~strikethrough~~ |
You can make various levels of heading by putting hash signs before the text
(all on its own line):
# Level 1 Heading
## Level 2 Heading
### Level 3 Heading
#### Level 4 Heading
##### Level 5 Heading
###### Level 6 Heading
Use three or more dashes, asterisks, or underscores to create a horizontal rule:
---
You can create bullet lists by starting a paragraph with a dash or asterisk:
- Bullet one
- Bullet two
- Nested bullet
Create numbered lists by starting a paragraph with a number and period:
1. Number one
2. Number two
1. Nested number
You can mark a blockquote by starting a line with > characters:
> This is a blockquote.
>
> Another paragraph in the quote.
>> Nested blockquote.
This is a blockquote.
Another paragraph in the quote.
Nested blockquote.
Surround text with single backticks for inline code:
Use the `print()` function.
Use the print() function.
Use triple backticks for code blocks. You can optionally specify a language
for syntax highlighting:
```php
<?php
echo "Hello World";
```
<?php echo "Hello World";
You can create page links by putting the name in brackets:
[Wiki/Page](Wiki/Page)
Create a remote link by typing its URL directly: http://www.horde.org/
Or use a described link:
[Horde](http://www.horde.org)
You can include images with the following syntax:

The image source can be a URL or a path to an attached file.
You can create tables using pipes and dashes:
| Heading one | Heading two |
|---|---|
| cell one | cell two |
| cell three | cell four |
| Heading one | Heading two |
|---|---|
| cell one | cell two |
| cell three | cell four |
Content from other Horde applications provided by portal blocks can be embedded
into a page using [[block]] tags.
To include Horde's moon phases block for example:
[[block horde/Moon phase=next hemisphere=northern]]
Guest user is not authorized for Horde (Host: 216.73.216.50).
Links to other Horde applications are supported if those applications support
API links. The Wiki itself supports such an API to link to individual wiki
pages:
[[link Link to some other wiki page|wiki/show page=Wiki/Page]]