User Tools

Site Tools


syntax

This document explains all syntax features of core LionWiki.

Headings

Heading H2

Heading H3

Heading H4

More exclamation marks you use, the smaller the heading will be (up to 5 exclamation marks). Exclamation marks has to be exactly at the beginning of the line.

Lists

Unordered list

fruit_apple_granny_smith_orange_vegetables_garlic_onion

  • Fruit
    • Apple
      • Granny smith
    • Orange
  • Vegetables
    • Garlic
    • Onion

Ordered list

  1. First item
    1. First subitem
      1. First subsubitem
    2. Second subitem

Text styles

^'Bold^
{small}Small text

x^{sup}10^{/sup} –> x{sup}10{/sup}

x^{sub}i^{/sub} –> x{sub}i{/sub}

CSS styles, classes, IDs

Since LionWiki 3.1

first.second

{.first.second#id color: blue; font-size: large}Styled text span with ID and two classes{/}

Classes begins with dot, ID with hash sign. Everything after first space is considered to be CSS style, so there can't be any space between or inside classes and ID. Few other possibilities:

text_-_neither_class_nor_id_just_style_.citation_text_if_-_just_class

The enclosing element is <span>.

Links to other pages can be created like this:

or

or

{br}

Emails and web links are automatically recognized:

lionwiki^@example.com –> lionwiki@example.com

{br}

You can use also relative links, but they have to start with ./ (otherwise it will be interpreted as Wiki page). So if you want to link some HTML page in the same directory, you use:

Or to use a relative path to a file on the same server but in a higher directory, you can use:

Images

Image handling was changed a lot in the 3.2 release, see older version of this page if you use older version.

If you need a way to upload images (or other files), check Upload plugin.

You can use your image as your link: ^^http://lionwiki.0o.cz/lion.jpg –>

http://lionwiki.0o.cz/lion.jpg

You can also place your image to the left or right, possibly combined with other features:

center|title=Big Lion|alt=Alt text|http://lionwiki.0o.cz/lion.jpg

right|title=Big Lion|alt=Alt text|http://lionwiki.0o.cz/lion.jpg

{br}

More complex operations with images can be done with ImageExt plugin.

Subpages

Subpages are useful when you need to insert some common content into multiple pages, example could be a navigational menu (by the way, we have Menu plugin.

Syntax: ^{include:page_to_be_included}.

You can use the same syntax to include page in template (i.e. not in page content), but in this case, whole content of this subpage must be in HTML (you can, but not have to enclose it in ^{html} and ^{/html}).

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.

Other

{TOC}

Table of contents

Automatically generated table of contents can be inserted with ^{TOC} (see demo on the right). It can be used in both pages and templates.

Characters

Some sequences of characters are automatically replaced:

  • Arrows : <^– : <–, ^–> : –>, <^–> : <–>
  • Dash : ^– : –
  • Copyrights : ^© or ^(C) : ©, ^® or ^(R) : ®

Code

Code syntax is useful when you need to keep original spacing and layout of text, especially for programming source code.

does:

print_hello_sys.argv_1

We also have a plugin for syntax highlighting.

Horizontal line


by ^–^–

Suppressing wiki syntax

By using ^^ character before syntax keyword or using ^something. If you still don't know how, take a look on wiki code of this page, there are plenty of examples. If you want to insert ^^ character, you have to double it, i.e. ^^^^

HTML code

Do you want to insert youtube video to your site? Or any other HTML code? Just insert it between ^{html}some html code{/html}. This does not have to work if config value $NO_HTML is set to true.

{html}<object width=“217” height=“177”><param name=“movie” value=“http://www.youtube.com/watch?v=bKK-cI6wsqYsrc=http://www.youtube.com/v/OvZrhdy2UdY&hl=cs&fs=1” type=“application/x-shockwave-flash” allowscriptaccess=“always” allowfullscreen=“true” width=“217” height=“177”></embed></object>{/html}

HTML entities

HTML entities are automatically recognized and left without modification.

Newline

LionWiki joins adjacent newlines together, if you need more than one newline, use ^{br}.

Internal comments

You can insert internal comments not intended to be displayed using HTML-like syntax ^<!^– text not intended to be displayed ^–>

{tags:syntax}

syntax.txt · Last modified: by 127.0.0.1