English German Русский Spanish Italian 简体中文

UNDER CONSTRUCTION

Textile Syntax

Below is a brief description of the syntax used in this wiki to create and edit pages

Headings

Don’t forget leave a blank line before and after of each title.

h1- Title

h2- Title

h3- Title

h4- Title

h5- Title
h6- Title

  1. h1. h1- Title
  2.  
  3. h2. h2- Title
  4.  
  5. h3. h3- Title
  6.  
  7. h4. h4- Title
  8.  
  9. h5. h5- Title
  10.  
  11. h6. h6- Title

Paragraph (Ctrl + p)

This is a simple paragraph

  1. p. This is a simple paragraph

For right-to-left text use this:

  1. p{direction:rtl;text-align:right}. Right to left text.

Right to left text.

Font size adjustment (don’t use for headings):

  1. p{font-size:smaller}. Smaller font...

Smaller font: usable for offering background information to which probably not everyone is interested.

  1. p{font-size:larger}. Larger font....

Larger font: as an eye-catching useful but harmful in excess.

Blockquotes

hey quotes !

  1. bq. hey quotes !

Bold text (Ctrl + b)

bold text

  1. *bold text*

Italic text (Ctrl + i)

italic text

  1. _italic text_

Strikethrough text (Ctrl + s)

strikethrough text

  1. -strikethrough text-

Applying multiple styles

ItalicStrikethroughBold text

  1. _-*ItalicStrikethroughBold text*-_

Bulleted List

  • 1 level item
    • 2 level item
      • 3 level item

  1. * 1 level item
  2. ** 2 level item
  3. *** 3 level item

Numeric List

  1. 1 level item
    1. 2 level item
      1. 3 level item

  1. # 1 level item
  2. ## 2 level item
  3. ### 3 level item

Table

ChannelUsability
Wikihigh
Forumhigh
Bugtrackermedium
left1
right2

Table headings are created by appending “_.” and a space to the pipe character.

The table cells are centered by default. You can force left or right alignment by appending “<.” or “>.” and a space to the pipe character.

  1. |_. Channel|_. Usability|
  2. |Wiki|high|
  3. |Forum|high|
  4. |Bugtracker|medium|
  5. |<. left|<. 1|
  6. |>. right|>. 2|

Picture

  1. !<URL>(<Alternative text>)!
  2. !http://developer.qt.nokia.com/uploads/image_upload/image_thumb.png(Alternative text)!

Links

There are two ways to make links,

the first is an absolute URL

  1. "Your text to link here...":http://developer.qt.nokia.com/wiki/TextileSyntax

Your text to link here… [developer.qt.nokia.com]
//don’t forget the “”

If you want to have a nice tooltip when you move the mouse cursor over the link you can add it after to you link label in paranthesis:

  1. "Your text to link here...(TextileSyntax)":http://developer.qt.nokia.com/wiki/TextileSyntax

Your text to link here… [developer.qt.nokia.com]

The second way allows relative URLs

  1. [ [RelativeURL | Your text to link here...] ]
  2. [ [TextileSyntax | Your text to link here...] ]

//removes the white spaces between “[ [” and “] ]”
Your text to link here…

If you want to add parenthesis to the link text, you must trick the textile syntax a bit and add an extra space or character after the closing parenthesis and before the quote (i.e. there there should not be a quote following directly the parenthesis.

write

  1. "setVisible(true) ":http://doc.qt.nokia.com/4.7/qwidget.html#visible-prop
  2. or
  3. "setVisible(true) call":http://doc.qt.nokia.com/4.7/qwidget.html#visible-prop

To get setVisible(true) [doc.qt.nokia.com] or setVisible(true) call [doc.qt.nokia.com]

Code

Just put your code between “@” and “@”

Add a category to a wiki page

This is a good thing to do to bring greater order to the wiki
To do this, just put the category that you want between “[ [” and “]]”

  1. [ [category:help]]
  2. [ [category:learning]]
  3. [ [category:Quick]]

//remove the white spaces between “[ [”

Read more

More documentation on Textile syntax can be found on this pages:

Categories: