
If you want to copy this page in your own wiki, you can simply
copy the markup and paste it into a page in your wiki.
Text Formatting
Lists
You can create an unordered or ordered lists using {{
- }} and {{
- }} characters, for example:
@@- List element
- Another element,
which continues on a new line - A third element
@@ | - List element
- Another element,
which continues on a new line - A third element
| Always keep an empty line after a list |
| @@ List element Another element, which continues on a new line A third element@@ | - List element
- Another element,
which continues on a new line - A third element
| Always keep an empty line after a list |
@@- List element
- Sub-element,
which continues on a new line - Still a sub-list
- A third element
@@ | - List element
- Sub-element,
which continues on a new line - Still a sub-list
- A third element
| You can combine {{ |
Tables
You can create tables using a simple markup. Please refer to the dedicated section for details.
File Links and Pictures
Displaying Pictures
{{
}} generates:
{{imageleft}} aligns the image on the left; {{imageauto}} sets no alignment; {{image}} produces no border nor caption.
The caption is optional, as well as the link ({{{UP(Help.WikiMarkup)}SamplePicture.jpg
}} in the example above). The link can be any type of link (page, URL, email, file/attachment, etc.).
Special Tags
All Special Tags are case insensitive.
| {{{WikiTitle}}} | {WikiTitle} | Title of this wiki |
| {{{Top}}} | {top} | Link to the top of the page |
| {{}} | | Table of Contents of the current page |
| {{{ThemePath}}} | {ThemePath} | Path of the current theme |
| {{{RSSPage}}} | | URL of the RSS Page |
| {{{WikiVersion}}} | {WikiVersion} | Version of ScrewTurn Wiki |
| {{{MainURL}}} | {MainURL} | URL of the wiki |
| {{{PageCount}}} | {PageCount} | Number of pages in the current namespace |
| {{{PageCount()}}} | {PageCount()} | Number of pages in the entire wiki |
| {{&0123;Username&0125;}} | {Username} | Username of the current user, if any |
| {{&0123;LoginLogout&0125;}} | {LoginLogout} | Login/Logout link, according to the current session |
| {{{Cloud}}} | {Cloud} | Page categories cloud |
| {{&0123;PageName&0125;}} | {PageName} | Name of the current page |
| {{&0123;Namespace&0125;}} | {Namespace} | Current namespace |
| {{&0123;NamespaceDropDown&0125;}} | {NamespaceDropDown} | Drop-down list of namespaces |
| {{{NamespaceList}}} | {NamespaceList} | List of namespaces |
| {{&0123;Orphans&0125;}} | {Orphans} | List of pages that have no incoming links |
| {{&0123;Wanted&0125;}} | {Wanted} | Lists of pages that need to be created |
| {{&0123;Incoming&0125;}} | {Incoming} | List of pages that link the current page |
| {{&0123;Outgoing&0125;}} | {Outgoing} | List of pages linked in the current page |
| {{&0123;RecentChanges&0125;}} | {RecentChanges} | List of recent changes made in the current namespace |
| {{&0123;RecentChanges()&0125;}} | {RecentChanges()} | List of recent changes made in the entire wiki |
Escaping Content
There are two ways to escape content that is usually interpreted by the WikiMarkup formatter.
This will simply ignore any WikiMarkup wrapped in it:
{{<nowiki>would be a link</nowiki>}} results in would be a link
This will escape all special characters, so they are displayed on the screen:
{{<esc>some HTML</esc>}} results in some HTML
This will ignore any new-line wrapped in it:
{{{{<nobr>some content
and then some more</nobr>}}}}
results in
some content and then some more