This page provides references and examples about how to preform the most common/popular actions using moinmoin wiki. You can find the original SyntaxReference at this link: http://moinmoin.wikiwikiweb.de/SyntaxReference
In general there are several ways to do similar things, but we will only focus in one of those ways to make it easier.
How to create a table
An example is worth...
- wiki code:
|| '''first column''' || '''second column''' || '''third column''' || || one || two || three || || bird || cow || dog || || heroes || lost || prison break ||
- result:
first column |
second column |
third column |
one |
two |
three |
bird |
cow |
dog |
heroes |
lost |
prison break |
---
How to create a Tree-structure
If you want to create a tree structure like:
Examples/SubPages/AnotherSubpage
1 - You must create the root page if it does not exists
- wiki code:
["Examples"]
- result:
2 - Once in the Examples page, you must create a sub-page using the slash (/) befor the name of the page. Notice that if you use the previous code, you will create a new root-page
- wiki code:
/SubPages
- result:
3 - Now you have to click in this SubPage and create it. You can repeat step 2 as many times as you want in order to create new subpages. Once in the SubPage, you can again create a third-level page using the same sintaxis as before
- wiki code:
/AnotherSubpages
- result:
If you want to link to any of these pages you can use:
- The slash tag (/) as seen before, if you are in the parent page.
- The full path if you are in any other page or tree structure:
- wiki code:
[:Examples:] [:Examples/SubPage:] [:Examples/SubPage/AnotherSubpage:]
- result:
Examples/SubPage/AnotherSubpage
---