Using Powerwiki

Working with pages

Add a page

To add a page, create a link to a page that doesn’t exist (or visit it directly by changing the URL).

Links to pages that don’t exist will be style differently; going to the page will take you to the edit form (provided you have permission).

Delete a page

Remove all content from a page and save it to delete it.

Syntax

Powerwiki supports markup engines for writing in different source languages. You can add your own engine too if there’s another language you would like to support. Set the default language with the POWERWIKI_MARKUP_ENGINE setting, and override it by wiki and page.

reStructuredText

Normally reStructuredText slugifies links by stripping whitespace, for example:

`Using Powerwiki`_
# becomes
<a href="usingpowerwiki">UsingPowerwiki</a>

Powerwiki prefers to slugify using dashes, so adds two custom roles to the rst parser:

:wiki:`Using Powerwiki'_
# becomes
<a href="using-powerwiki">Using Powerwiki</a>

and for assets:

:asset:`Using Powerwiki'_
# becomes
<a href="asset:using-powerwiki">Using Powerwiki</a>