It is easy to collaborate: just type in your text. You don't need to know HTML at all, though you can use it if you prefer. Links to topics will be created automatically, as long as you follow these simple Text Formatting Rules. TextFormattingFAQ has answers to frequently asked questions about text formatting. This page is also available as quick reference pop-up window from a link in the Edit screen.
|
Most HTML tags will work, but it's almost always preferable not to use HTML, so that the markup remains easy for everyone to edit.
Being able to create links without any formatting required is a core TWiki feature, made possible using WikiNames. With the latest version of TWiki linking rules, a simple extension of the syntax provides an new set of flexible linking options.
http://...
, https://...
, ftp://...
and mailto:...@...
are linked automatically.
name@domain.com
are linked automatically.
Variables are names that are enclosed in percent signs; they get expanded on the fly.
%TOC%
: The table of content, is based on headings in a topic.
%WEB%
: The current web, is TWiki .
%TOPIC%
: The current topic name, is TextFormattingRules .
%ATTACHURL%
: The attachment URL of the current topic. Example usage: If you attach a file to a topic you can refer to it as %ATTACHURL%/image.gif
to show the URL of the file or the image in your text.
%INCLUDE{"SomeTopic"}%
: Server side include, includes another topic. The current TWiki web is the default web. Example: %INCLUDE{"TWiki.TWikiWebsTable"}%
The formatting rules are fairly simple to use and fast to type. However, there are some things to watch out for:
<filename>
is not displayed. How can I show it as it is? '<'
and '>'
characters have a special meaning in HTML, they define HTML tags. You need to escape them, so write '<'
instead of '<'
, and '>'
instead of '>'
. 'prog <filename>'
to get 'prog <filename>'
.
'&'
character sometimes not displayed? '&'
character has a special meaning in HTML, it starts a so called character entity, i.e. '©'
is the ©
copyright character. You need to escape '&'
to see it as it is, so write '&'
instead of '&'
. 'This & that'
to get 'This & that'
.
Plugins provide additional text formatting rules and can extend the functionality of TWiki into many other areas. Available Plugins are located in the Plugins web. Currently enabled plugins on this site are:
"$SUM( $ABOVE() )"
to tables located in TWiki topics.ExternalSite:Page
text to external sites based on aliases defined in a rules topic :-)
for :cool:
for :cool:Check on current Plugin status and settings for this site in TWikiPreferences.
-- MikeMannix? - 30 Aug 2001