---
. You can enter more than three if you like, for a more visible separator in edit mode: --------------
---++ Have a question?
. %TOC%
wherever you like on a page (see TWikiVariables for more %TOC%
options).
<
= <
>
= >
(a > 0)
Result: (a > 0)
!WikiStyleWord
displays as WikiStyleWord
<nop>
, e.g. write A <nop>!= B
to get "A != B". Alternatively, use the HTML entity !
, which renders as an exclamation mark, e.g. write A != B
to get "A != B".
Proportional text, =fixed font=, proportional again.
Result: Proportional text, fixed font
, proportional again.
preformatted
HTML option to keep the new line of text as is. Enclose the text in <pre> </pre>, or in TWiki's own <verbatim> </verbatim> tag:
This text will keep its format as it is: <verbatim> Unit Price Qty Cost ------- ------ --- ------ aaa 12.00 3 36.00 </verbatim>The
pre
tag is standard HTML; verbatim
is a special TWiki tag that forces text to fixed font mode, and also prevents other tags and TWiki shortcuts from being expanded.
NOTE: VARIABLES are still Set within verbatim tags (this is a historical peculiarity)
NOTE: The verbatim
opening and closing tags are converted into pre
tags; any HTML attributes (e.g., class
, id
) in the opening verbatim
tag are included in the corresponding pre
tag.
| cell A1 | cell B1 | cell C1 |
| cell A2 | cell B2 | cell C2 |
cell A1 | cell B1 | cell C1 |
cell A2 | cell B2 | cell C2 |
<table border="1"> <tr> <th> Head A </th> <th> Head B </th> </tr><tr> <td> Cell A2 </td> <td> Cell B2 </td> </tr><tr> <td> Cell A3 </td> <td> Cell B3 </td> </tr> </table>Result:
Head A | Head B |
---|---|
Cell A2 | Cell B2 |
Cell A3 | Cell B3 |
%ATTACHURL%/myImage.gif
. This works only for the topic where the image is attached to.
To place an image on any topic, there are two ways of including inline images.
1. Using URL ending in .gif, .jpg, .jpeg, .png
This is a simple and automatic way of including inline images. Simply write the URL of the image file, this will create the inline image for you. NOTE: The images must be accessible as a URL.
%PUBURL%/TWiki/TWikiLogos/T-logo-80x15.gif logo.
ImageLibrary
- and then link to the images directly: pic.gif
to Someweb.SomeTopic
%PUBURL%/Someweb/SomeTopic/pic.gif
width
and height
parameters that have the actual image size. http://www.htmlhelp.com/reference/wilbur/special/img.html has more on inline images.
<img src="%PUBURLPATH%/TWiki/TWikiLogos/T-logo-80x15.gif" width="80" height="15" border="0" alt="logo" /> logo.
%RED% red text %ENDCOLOR% and %GREEN% green text %ENDCOLOR%
Result: red text and green text
%<color>%
text must end with %ENDCOLOR%
. If you want to switch from one color to another one you first need to end the active color with %ENDCOLOR%
, e.g. write %RED% some text %ENDCOLOR% %GREEN% more text %ENDCOLOR%
.
If you need more colors you can use HTML, like <font color="#ff0000"> red text </font>
. You can also use the up-to-date style
attribute - ex: style="color:#ff0000"
- placed in most HTML tags. span
is an all-purpose choice: <span style="color:#ff0000">CoLoR</span>
. Only old (like 3.x IE & NS) browsers have a problem with style
.
The code is the hexadecimal RGB color code, which is simply Red, Green and Blue values in hex notation (base 16, 0-F). For pure red, the RGB components are 255-0-0 - full red (255), no green or blue. That's FF-0-0 in hex, or "#ff0000"
for Web page purposes. StandardColors lists basic colors.
Copyright © 1999-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding Daya Bay? Send feedback Note: Please contribute updates to this topic on TWiki.org at TWiki:TWiki.TextFormattingFAQ. |