6.0.0-beta13
4/11/26

Sample Page for Markdown Formatting

General Notes

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.

Inline Formatting

Markup Result
*emphasis text* emphasis text
**strong text** strong text
***emphasis and strong*** emphasis and strong
`teletype text` teletype text
~~strikethrough~~ strikethrough

Headings

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

Level 3 Heading

Level 4 Heading

Level 5 Heading
Level 6 Heading

Horizontal Rules

Use three or more dashes, asterisks, or underscores to create a horizontal rule:

---

Lists

Bullet Lists

You can create bullet lists by starting a paragraph with a dash or asterisk:

- Bullet one
- Bullet two
  - Nested bullet
  • Bullet one
  • Bullet two
    • Nested bullet

Numbered Lists

Create numbered lists by starting a paragraph with a number and period:

1. Number one
2. Number two
   1. Nested number
  1. Number one
  2. Number two
    1. Nested number

Block Quotes

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.

Code

Inline Code

Surround text with single backticks for inline code:

Use the `print()` function.

Use the print() function.

Code Blocks

Use triple backticks for code blocks. You can optionally specify a language
for syntax highlighting:

```php
<?php
echo "Hello World";
```
&lt;?php
echo &quot;Hello World&quot;;

Links and Images

Wiki Links

You can create page links by putting the name in brackets:

[Wiki/Page](Wiki/Page)

Wiki/Page

URLs

Create a remote link by typing its URL directly: http://www.horde.org/

Or use a described link:

[Horde](http://www.horde.org)

Horde

Images

You can include images with the following syntax:

![Alt text](image-url.png)

The image source can be a URL or a path to an attached file.

Horde

Tables

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

Application Content

Application Blocks

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).

Application Links

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]]

Link to some other wiki page