Main page
Help
Aide
Recent changes
LionWiki-t2t
MarkItUp
Preview
Scroll
Display
Swap
Show page
Syntax
B
I
U
S
H2
H3
wiki-link
ext-link
img
code
list
table
date
Cette page explique la syntaxe de LionWiki-t2t, qui est basée sur [txt2tags http://www.txt2tags.org]. (traduction en cours) This syntax is quite easy to learn, but it's also quite strict: if what you write differ a bit from the rules, the results might be unpredicable and deceptive. Try to especially take care of the spaces used in the syntax. To master the txt2tags markup efficiently, you are adviced to read [the manual which can be found there http://www.txt2tags.org/docs.html] == Entêtes == Example: ``` CONVERT-2EQUAL Heading H2 == CONVERT-3EQUAL Heading H3 === CONVERT-4EQUAL Heading H4 CONVERT-4EQUAL ``` No extra characted, except spaces (even if I personnally advice to avoid them, and instead to start writing the markup at the beginning of the line), are allowed before the heading markup. Spaces are not required around the part to be marked as heading, but it might be more readable this way. == Heading H2 == === Heading H3 === ==== Heading H4 ==== == Listes == === Listes non ordonnées === ``` - Fruit - Apple - Granny smith - Orange - Vegetables - Garlic - Onion ``` You must add exactly one space after each dash to enable the list. - Fruit - Apple - Granny smith - Orange - Vegetables - Garlic - Onion === Listes ordonnées === ``` + First item + First subitem + First subsubitem + Second subsubitem + Third subsubitem + Second subitem ``` + First item + First subitem + First subsubitem + Second subsubitem + Third subsubitem + Second subitem == Styles de texte == - ``**``Bold``**`` --> **Bold** (two stars) - ``//``Italic``//`` --> //Italic// (two slash) - ``**//``Bold and italic``//**`` --> **//Bold and italic//** (combination of the above) - ``--``Strikethrough``--`` --> --Strikethrough-- - ``__``Underlined``__`` --> __Underlined__ You can't add extra spaces at the boundaries of the part you want to mark with the styles above. This part can contain spaces (if it's a sentence), but not after the first mark, and not before the last mark : the marks must be glued with the contents. == Tableaux == ``` || title 1 | title 2 | | item 1 | item 2 | | item 3 | item 4 | ``` {//..} || title 1 | title 2 | | item 1 | item 2 | | item 3 | item 4 | == Syntaxe supplémentaire == En plus de la syntaxe txt2tags, voici quelques balises supplémentaires. Vous pouvez personnaliser, étendre ou configurer la plupart d'entre elles dans le fichier config.t2t à la racine du wiki, ou dans le fichier txt2tags.class.php. - Nombres aléatoires ``` %%rand(1,100) va afficher un nombre compris entre 1 et 100 exemple: %%rand(1,100) - Barre de progression ``` CONVERT-BRACKET-START10%CONVERT-BRACKET-END va afficher une barre de progression de 10% exemple: [10%] ``` CONVERT-BRACKET-START3%7CONVERT-BRACKET-END va afficher une barre de progression de 3 sur 7 exemple: [3%7] - Bouton : ``@@``BUTTON(http://ddg.gg)``@@`` @@BUTTON(test (no link))@@ @@BUTTON([link to a search engine http://ddg.gg])@@ @@BUTTON(http://ddg.gg)@@ - Tags : ``(CONVERT-HASHTAGkeyword)`` == Emails, links, images == Links to other local wiki pages can be created like this: CONVERT-BRACKET-STARTCONVERT-BRACKET-STARTmainCONVERT-BRACKET-ENDCONVERT-BRACKET-END --> [[main]] With some label, use this syntax: CONVERT-BRACKET-STARTCONVERT-BRACKET-STARTThis is the main page|mainCONVERT-BRACKET-ENDCONVERT-BRACKET-END Which is similar to: CONVERT-BRACKET-STARTThis is the main page index.php?page=mainCONVERT-BRACKET-END Emails and web links are automatically recognized: - ``http://www.homepage.td`` --> http://www.homepage.td - ``lionwiki@example.com`` --> lionwiki@example.com % TODO You can use also relative links (inside the wiki): - ``[[admin]]`` --> [[admin]] = Autres = == Images == If you need a way to upload images (or other files), check the [upload action index.php?action=upload] % You can use your image as your link: % You can also place your image to the left or right, possibly combined with other features: == Subpages == Subpages are useful when you need to insert some common content into multiple pages, example could be a navigational menu or some repeated content. Syntax: ``%!include:var/pages/latest.txt`` == Multilingual content == Let's say you have page named "Biography" in German and you would like to make French variant. Rename page Biography to Biography.de and create page named Biography.fr and insert French translation there. Then visitors whose browser identifies primary language as French will see Biography.fr. It's recommended to create a redirect from page Biography to default language variant. The obvious limitation is that page name has to stay the same in every language variant. That's not such a big problem with "Biography", but it can be worse with other names. This is recommended way to create multilingual content, there are more ways to do it. % Redirects % If you want to redirect from some page to other, put ^{redirect:page} at the very beginning of the page. % It's not straightforward to edit page containing redirect because every visit will cause redirecting. The only way to edit such page is from search results (as it provides direct edit links), or possibly by manually altering URL. == Table of contents == Automatically generated table of contents can be inserted with ``CONVERT-TOC`` == Characters == Some sequences of characters are automatically replaced: - Arrows : ""--""> : --> - Dash : ""--""- : --- == Code == Code syntax is useful when you need to keep original spacing and layout of text == Horizontal line == ``CONVERT-DASHCONVERT-DASHCONVERT-DASHCONVERT-DASHCONVERT-DASHCONVERT-DASHCONVERT-DASHCONVERT-DASHCONVERT-DASHCONVERT-DASHCONVERT-DASHCONVERT-DASHCONVERT-DASHCONVERT-DASHCONVERT-DASHCONVERT-DASHCONVERT-DASHCONVERT-DASHCONVERT-DASHCONVERT-DASH`` -------------------- == HTML code == Do you want to insert youtube video to your site? Or any other HTML code? Just insert it between ``''``some html code``''``. If you need to include a whole block, enter it like that: ``'''``''<br/>'' HTML code''<br/>'' more code''<br/>'' ``'''`` This does not have to work if config value $NO_HTML is set to true. Note that it is serious security risk if you allow users to post HTML code in your wiki. == Newline == LionWiki joins adjacent newlines together, if you need more than one newline, use ``CONVERT-BRACKET-START//..CONVERT-BRACKET-END``. {//..} == Internal comments == You can insert internal comments not intended to be displayed using a ``%`` at the beginning of a line. %secret comment == Basic Markdown support == There is also a basic Markdown support. Hash heading, strong, links, lists are supported. (#syntax)
↓
↑