XWiki allows to create internet pages without using HTML thanks to the Wiki Syntax. This Wiki Syntax is a simple way to modify the aspect of a document as well as create links between documents.
This document explains the wiki syntax.
Commande: |
Exemple: |
Resultat: |
Titles
|
1 Titre 1
1.1 Titre 2
|
Titre 1
Titre 2
|
Paragraphs
|
Here is a paragraph.
This text continues the same paragraph.
This paragraph is a new one.
This paragraph is another new one.
|
Here is a paragraph. This text continues the same paragraph.
This paragraph is a new one.
This paragraph is another new one.
|
Lists
|
* List item
* List item
* Recursive list
* Recursive list
* Recursive list
* Recursive list
* Recursive list
* Recursive list
1. Enumerated list
1. Enumerated list
a. Alphabetical enumerated list
a. Alphabetical enumerated list
A. Uppercase alphabetical enumerated list
A. Uppercase alphabetical enumerated list
i. Roman enumerated list
i. Roman enumerated list
I. Uppercase roman enumerated list
I. Uppercase roman enumerated list
g. Greek enumerated list
g. Greek enumerated list
h. Hirigana (jap.) enumerated list
h. Hirigana (jap.) enumerated list
k. Katakana (jap.) enumerated list
k. Katakana (jap.) enumerated list
|
- List item
- List item
- Recursive list
- Recursive list
- Recursive list
- Recursive list
- Recursive list
- Recursive list
- Enumerated list
- Enumerated list
- Alphabetical enumerated list
- Alphabetical enumerated list
- Uppercase alphabetical enumerated list
- Uppercase alphabetical enumerated list
- Roman enumerated list
- Roman enumerated list
- Uppercase roman enumerated list
- Uppercase roman enumerated list
- Greek enumerated list
- Greek enumerated list
- Hirigana (jap.) enumerated list
- Hirigana (jap.) enumerated list
- Katakana (jap.) enumerated list
- Katakana (jap.) enumerated list
|
Bold
There are two ways to makr text as bold. |
Here is a text with a *bold* word.
Here is a text with a __bold__ word.
|
Here is a text with a bold word. Here is a text with a bold word.
|
Italics
|
~~Here is a text in italics~~
|
Here is a text in italics |
Striked Text
|
--Here is a striked text--
|
Here is a striked text |
Wiki Links
|
Wiki Links:
* [WebHome]
* [Web Home]
* [web home>WebHome]
* [Main.WebHome]
* [web home|Main.WebHome]
|
Wiki Links:
|
External Links
|
* http://www.xwiki.org
* [http://www.xwiki.org]
* [lien xwiki.org>http://www.xwiki.org]
* {link:lien xwiki.org|http://www.xwiki.org}
|
|
Quotes
|
{quote:http://www.xwiki.org}
Here is a text with a quote
{quote}
{quote:http://www.xwiki.org}
~~Here is a text with a quote~~
{quote}
|
Here is a text with a quote Source
Here is a text with a quote Source
|
Tables
The syntax for tables allows to easily create content in table format. It even allows to make some calculation on the content ! |
{table}
Title 1 | Title 2
Word 1 | Word 2
{table}
{table}
Category | Sales (K€)
Category 1 | 100
Category 2 | 50
Category 3 | 50
Total | =sum(B2:B4)
{table}
|
Title 1 |
Title 2 |
Word 1 |
Word 2 |
Category |
Sales (K€) |
Category 1 |
100 |
Category 2 |
50 |
Category 3 |
50 |
Total |
200 |
|
Document Includes
Using XWiki you can include documents inside other documents. This can be usefull to create complex documents using multiple document an then convert them in PDF. This also allows to create forms to present object data. |
#includeTopic("Doc.TestInclude")
#includeForm("Doc.TestInclude") |
|