f802514accfae24fd5992c5feca93c973a3a8fff
[openafs-wiki.git] / TWiki / TextFormattingRules.mdwn
1 <div>
2   <ul>
3     <li><a href="#TWiki Text Formatting"> TWiki Text Formatting</a><ul>
4         <li><a href="#TWiki Editing Shorthand"> TWiki Editing Shorthand</a></li>
5         <li><a href="#Using HTML"> Using HTML</a><ul>
6             <li><a href="#HTML and TWiki Usability"> HTML and TWiki Usability</a></li>
7             <li><a href="#TWiki HTML Rendering"> TWiki HTML Rendering</a></li>
8           </ul>
9         </li>
10         <li><a href="#Hyperlinks"> Hyperlinks</a><ul>
11             <li><a href="#Internal Links"> Internal Links</a></li>
12             <li><a href="#External Links"> External Links</a></li>
13           </ul>
14         </li>
15         <li><a href="#TWiki Variables"> TWiki Variables</a></li>
16         <li><a href="#TWikiPlugin Formatting Extension"> TWikiPlugin Formatting Extensions</a></li>
17         <li><a href="#Common Editing Errors"> Common Editing Errors</a></li>
18       </ul>
19     </li>
20   </ul>
21 </div>
22
23 # <a name="TWiki Text Formatting"></a> TWiki Text Formatting
24
25 Working in TWiki is as easy as typing in text - **exactly like email**. You don't need to know HTML, though you can use it if you prefer. Links to topics are created automatically when you enter [[WikiWords]]. And TWiki shorthand gives you all the power of HTML with a simple coding system that takes no time to learn. It's all layed out below - refer back to this page in a pop-up window from the **Edit** screen.
26
27 <a name="TWikiShorthand"></a>
28
29 ## <a name="TWiki Editing Shorthand"></a> TWiki Editing Shorthand
30
31 <table bgcolor="#000000" border="1" cellpadding="3" cellspacing="1">
32   <tr bgcolor="#ffffff">
33     <td><strong>Formatting Command:</strong></td>
34     <td><strong>Example: You write:</strong></td>
35     <td><strong>You get:</strong></td>
36   </tr>
37   <tr bgcolor="#ffffff">
38     <td valign="top"><strong>Paragraphs:</strong> %BR% Blank lines will create new paragraphs. </td>
39     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
40 1st paragraph
41
42 2nd paragraph
43 </pre> </font></span></td>
44     <td valign="top"> 1st paragraph <p> 2nd paragraph </p>
45     </td>
46   </tr>
47   <tr bgcolor="#ffffff">
48     <td valign="top"><strong>Headings:</strong> %BR% At least three dashes at the beginning of a line, followed by plus signs and the heading text. One plus creates a level 1 heading (most important), two pluses a level 2 heading; the maximum is level 6. <strong><em>Note:</em></strong> A Table of Content can be created automatically with the <code>%TOC%</code> variable, see [[Main/TWikiVariables]]. Any heading text after <code>!!</code> is excluded from the TOC; for example, write <code>---+!! text</code> if you do not want to list a header in the TOC. </td>
49     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
50 ---++ Sushi
51
52 ---+++ Maguro
53 </pre> </font></span></td>
54     <td valign="top">
55       <h2>Sushi</h2>
56       <p>
57       </p>
58       <h3>Maguro</h3>
59     </td>
60   </tr>
61   <tr bgcolor="#ffffff">
62     <td valign="top"><strong>Bold Text:</strong> %BR% Words get <strong>bold</strong> by enclosing them in <code>*</code> asterisks. </td>
63     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
64 *Bold*
65 </pre> </font></span></td>
66     <td valign="top"><strong>Bold</strong></td>
67   </tr>
68   <tr bgcolor="#ffffff">
69     <td valign="top"><strong>Italic Text:</strong> %BR% Words get <em>italic</em> by enclosing them in <code>_</code> underscores. </td>
70     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
71 _Italic_
72 </pre> </font></span></td>
73     <td valign="top"><em>Italic</em></td>
74   </tr>
75   <tr bgcolor="#ffffff">
76     <td valign="top"><strong>Bold Italic:</strong> %BR% Words get <em>_bold italic</em> by enclosing them in <code>_</code> double-underscores. </td>
77     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
78 __Bold italic__
79 </pre> </font></span></td>
80     <td valign="top"><strong><em>Bold italic</em></strong></td>
81   </tr>
82   <tr bgcolor="#ffffff">
83     <td valign="top"><strong>Fixed Font:</strong> %BR% Words get shown in <code>fixed font</code> by enclosing them in <code>=</code> equal signs. </td>
84     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
85 =Fixed font=
86 </pre> </font></span></td>
87     <td valign="top"><code>Fixed font</code><p>
88       </p>
89     </td>
90   </tr>
91   <tr bgcolor="#ffffff">
92     <td valign="top"><strong>Bold Fixed Font:</strong> %BR% Words get shown in <code><b>bold fixed font</b></code> by enclosing them in <code><b></b></code> double equal signs. </td>
93     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
94 ==Bold fixed==
95 </pre> </font></span></td>
96     <td valign="top"><code><b>Bold fixed</b></code></td>
97   </tr>
98   <tr bgcolor="#ffffff">
99     <td valign="top"><strong><em>Note:</em></strong> Make sure there is no space between the text and the bold, italic, or other indicators (<code>* _ __ = ==</code>). </td>
100     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
101 _This works_,
102 _this not _
103 </pre> </font></span></td>
104     <td valign="top"><em>This works</em>,%BR% _this not _ </td>
105   </tr>
106   <tr bgcolor="#ffffff">
107     <td valign="top"><strong>Verbatim Mode:</strong> %BR% Surround code excerpts and other formatted text with <code>&lt;verbatim&gt;</code> and <code>&lt;/verbatim&gt;</code> tags. %BR% <strong><em>Note:</em></strong> Use <code>&lt;pre&gt;</code> and <code>&lt;/pre&gt;</code> tags instead if you want that HTML code is interpreted. %BR% <strong><em>Note:</em></strong> Each tag must be on a line by itself. </td>
108     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
109 &lt;verbatim&gt;
110 class CatAnimal {
111   void purr() {
112          &lt;code here&gt;
113   }
114 }
115 &lt;/verbatim&gt;
116 </pre> </font></span></td>
117     <td valign="top"><pre>
118 class CatAnimal {
119   void purr() {
120     &lt;code here&gt;
121   }
122 }
123 </pre></td>
124   </tr>
125   <tr bgcolor="#ffffff">
126     <td valign="top"><strong>Separator:</strong> %BR% At least three dashes at the beginning of a line. </td>
127     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
128 -------
129 </pre> </font></span></td>
130     <td valign="top">
131       <hr />
132     </td>
133   </tr>
134   <tr bgcolor="#ffffff">
135     <td valign="top"><strong>List Item:</strong> %BR% Three spaces and an asterisk. </td>
136     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
137         * bullet item
138 </pre> </font></span></td>
139     <td valign="top">
140       <ul>
141         <li> bullet item </li>
142       </ul>
143     </td>
144   </tr>
145   <tr bgcolor="#ffffff">
146     <td valign="top"><strong>Nested List Item:</strong> %BR% Six, nine, ... spaces and an asterisk. </td>
147     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
148         * level 1
149                 * level 2
150 </pre> </font></span></td>
151     <td valign="top">
152       <ul>
153         <li> level 1 <ul>
154             <li> level 2 </li>
155           </ul>
156         </li>
157       </ul>
158     </td>
159   </tr>
160   <tr bgcolor="#ffffff">
161     <td valign="top"><strong>Ordered List:</strong> %BR% Three spaces and a number. </td>
162     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
163         1 Sushi
164         1 Dim Sum
165 </pre> </font></span></td>
166     <td valign="top">
167       <ol>
168         <li> Sushi </li>
169         <li> Dim Sum </li>
170       </ol>
171     </td>
172   </tr>
173   <tr bgcolor="#ffffff">
174     <td valign="top"><strong>Definition List:</strong> %BR% Three spaces, the term, a colon, a space, followed by the definition. %BR% <strong><em>Note:</em></strong> Terms with spaces are not supported. In case you do have a term with more then one word, separate the words with dashes or with the <code>&amp;nbsp;</code> non-breaking-space entity. </td>
175     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
176         Sushi: Japan
177         Dim&amp;nbsp;Sum: S.F.
178 </pre> </font></span></td>
179     <td valign="top">
180       <dl>
181         <dt> Sushi</dt>
182         <dd> Japan </dd>
183         <dt> Dim Sum</dt>
184         <dd> S.F. </dd>
185       </dl>
186     </td>
187   </tr>
188   <tr bgcolor="#ffffff">
189     <td valign="top"><strong>Table:</strong> %BR% Any number of lines of text. Each line is one row of the table consisting of one or more cells. Each cell starts and ends with a vertical bar '|'. Any spaces at the beginning of a line are ignored.%BR% <strong><em>Notes:</em></strong> %BB% <code>| *bold* |</code> cells are displayed as table headers.%BB% <code>|   center-spaced   |</code> cells are displayed center aligned.%BB% <code>|     right-spaced |</code> cells are displayed right aligned.%BB% <code>| 2 colspan ||</code> cells are displayed as multi-span columns (i.e., a cell with no text spans a column).%BB% <code>|^|</code> cells with a caret indicate follow-up rows of multi-span rows.%BB% If a row contains a large amount of text, and you want it to be more readable while editing the table, split the row into multiple text lines by ending each line with a backslash character <code>'\'</code>.%BB% Table cells wrap automatically as determined by the browser. </td>
190     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
191 | *L* | *C* | *R* |
192 | A2 |  2  |  2 |
193 | A3 |  3  |  3 |
194 | multi span |||
195 | A4-6 | four | four |
196 |^| five | five |
197 |^| six | six |
198 </pre> </font></span></td>
199     <td valign="top">
200       <table border="1" cellpadding="0" cellspacing="0">
201         <tr>
202           <th bgcolor="#99CCCC"><strong> L </strong></th>
203           <th bgcolor="#99CCCC"><strong> C </strong></th>
204           <th bgcolor="#99CCCC"><strong> R </strong></th>
205         </tr>
206         <tr>
207           <td> A2 </td>
208           <td align="center"> 2 </td>
209           <td align="right"> 2 </td>
210         </tr>
211         <tr>
212           <td> A3 </td>
213           <td align="center"> 3 </td>
214           <td align="right"> 3 </td>
215         </tr>
216         <tr>
217           <td colspan="3"> multi span </td>
218         </tr>
219         <tr>
220           <td> A4-6 </td>
221           <td> four </td>
222           <td> four </td>
223         </tr>
224         <tr>
225           <td> ^ </td>
226           <td> five </td>
227           <td> five </td>
228         </tr>
229         <tr>
230           <td> ^ </td>
231           <td> six </td>
232           <td> six </td>
233         </tr>
234       </table>
235     </td>
236   </tr>
237   <tr bgcolor="#ffffff">
238     <td valign="top"><strong>WikiWord Links:</strong> %BR% CapitalizedWordsStuckTogether (or [[Main/WikiWords]]) will produce a link automatically. %BR% <strong><em>Note:</em></strong> In case you want to link to a topic in a different %WIKITOOLNAME% web write <code>Webname.TopicName</code>. </td>
239     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
240 WebNotify
241
242 Know.ReadmeFirst
243 </pre> </font></span></td>
244     <td valign="top">[[Main/WebNotify]]<p>[[Know/ReadmeFirst]]</p>
245     </td>
246   </tr>
247   <tr bgcolor="#ffffff">
248     <td valign="top"><a name="SquareBrackets"></a> <strong>Forced Links:</strong> %BR% You can create a forced internal link by enclosing words in double square brackets. %BR% <strong><em>Note:</em></strong> Text within the brackets may contain optional spaces; the topic name is formed by capitalizing the initial letter and by removing the spaces; for example, <code>[[text formatting FAQ]]</code> links to topic [[Main/TextFormattingFAQ]]. You can also refer to a different web and use anchors. %BR% <strong><em>Note:</em></strong> To "escape" double square brackets that would otherwise be a correct link, use <code>&lt;nop&gt;</code> between the leading left square brackets, that is, begin with <code>[&lt;nop&gt;[....</code></td>
249     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
250 [[wiki syntax]]
251
252 [[Main.TWiki users]]
253 </pre> </font></span></td>
254     <td valign="top">[[Main/WikiSyntax]]<p>[[Main/TWikiUsers]]</p>
255     </td>
256   </tr>
257   <tr bgcolor="#ffffff">
258     <td valign="top"><strong>Specific Links:</strong> %BR% Create a link where you can specify the link text and the link reference separately, using nested square brackets like <code>[[reference][text]]</code>. Internal link references (e.g. [[Main/WikiSyntax]]) and external link references (e.g. <a href="http://TWiki.org/" target="_top">http://TWiki.org/</a>) are supported. %BR% <strong><em>Note:</em></strong> The same <strong><em>Forced Links</em></strong> rules apply for internal link references. %BR% <strong><em>Note:</em></strong> For external link references, you can simply use a space instead of <code>][</code> to separate the link URL from the descriptive text. %BR% <strong><em>Note:</em></strong> Anchor names can be added as well, like <code>[[WebHome#MyAnchor][go home]]</code> and <code>[[http://gnu.org/#Action][GNU Action]]</code>. </td>
259     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
260 [[WikiSyntax][syntax]]
261
262 [[http://gnu.org][GNU]]
263
264 [[http://xml.org XML]]
265 </pre> </font></span></td>
266     <td valign="top">[[Main/WikiSyntax]]<p><a href="http://gnu.org" target="_top">GNU</a></p>
267       <p><a href="http://xml.org" target="_top">XML</a></p>
268     </td>
269   </tr>
270   <tr bgcolor="#ffffff">
271     <td valign="top"><strong>Anchors:</strong> %BR% You can define a link reference inside a %WIKITOOLNAME% topic (called an anchor name) and link to that. To <strong><em>define</em></strong> an anchor write <code>#AnchorName</code> at the beginning of a line. The anchor name must be a [[Main/WikiWord]]. To <strong><em>link to</em></strong> an anchor name use the <code>[[MyTopic#MyAnchor]]</code> syntax. You can omit the topic name if you want to link within the same topic. </td>
272     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
273 [[WikiWord#NotThere]]
274
275 [[#MyAnchor][Jump]]
276
277 #MyAnchor To here
278 </pre> </font></span></td>
279     <td valign="top">[[Main/WikiWord#NotThere]]<p>[[Main/WebHome#MyAnchor]]</p>
280       <p><a name="MyAnchor"></a> To here </p>
281     </td>
282   </tr>
283   <tr bgcolor="#ffffff">
284     <td valign="top"><strong>Prevent a Link:</strong> %BR% Prevent a [[Main/WikiWord]] from being linked by prepending it with the <code>&lt;nop&gt;</code> tag. </td>
285     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
286 &lt;nop&gt;SunOS
287 </pre> </font></span></td>
288     <td valign="top"> SunOS </td>
289   </tr>
290   <tr bgcolor="#ffffff">
291     <td valign="top"><strong>Disable Links:</strong> %BR% You can disable automatic linking of [[Main/WikiWords]] by surrounding text with <code>&lt;noautolink&gt;</code> and <code>&lt;/noautolink&gt;</code> tags. %BR% <strong><em>Note:</em></strong> Each tag must be on a line by itself. %BR% <strong><em>Note:</em></strong> This also works for TWiki tables, but only if you add a blank line between the end of the table and the closing <code>&lt;/noautolink&gt;</code> tag (known issue of the [[Main/TablePlugin]]). </td>
292     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
293  &lt;noautolink&gt;
294  RedHat &amp;
295  SuSE
296  &lt;/noautolink&gt;
297 </pre> </font></span></td>
298     <td valign="top"> RedHat &amp; SuSE </td>
299   </tr>
300   <tr bgcolor="#ffffff">
301     <td valign="top"><strong>Mailto: Links:</strong> %BR% To create 'mailto:' links that have more descriptive link text, specify subject lines or message bodies, or omit the email address, you can write <code>[[mailto:user@domain descriptive text]]</code>. </td>
302     <td valign="top"><span style="background: #FFFFCC"><font color="#990000"> <pre>
303 [[mailto:a@z.com Mail]]
304
305 [[mailto:?subject=Hi Hi]]
306 </pre> </font></span></td>
307     <td valign="top"><a href="mailto:a@z.com">Mail</a><p><a href="mailto:?subject=Hi">Hi</a></p>
308     </td>
309   </tr>
310 </table>
311
312 ## <a name="Using HTML"></a> Using HTML
313
314 You can use just about any HTML tag without a problem - however, there are a few usability and technical considerations to keep in mind.
315
316 ### <a name="HTML and TWiki Usability"></a> HTML and TWiki Usability
317
318 - On collaboration pages, it's preferable NOT to use HTML, and to use [[TWiki shorthand|Main/WebHome#TWikiShorthand]] instead - this keeps the text uncluttered and easy to edit.
319 - %X% **NOTE:** TWiki is designed to work with a wide range of browsers and computer platforms, holding to HTML 3.2 compatibility in the standard installation - adding raw HTML, particularly browser-specific tags (or any other mark-up that doesn't degrade well) will reduce compatibility.
320
321 ### <a name="TWiki HTML Rendering"></a> TWiki HTML Rendering
322
323 - TWiki converts shorthand notation to XHTML 1.0 for display. To copy a fully marked-up page, simply view source in your browser and save the contents.
324   - %T% If you need to save HTML frequently, you may want to check out TWiki:Plugins/GenHTMLAddon - it will "generate a directory containing rendered versions of a set of TWiki pages together with any attached files."
325 - %X% **NOTE:** The opening and closing angle brackets - <code>**&lt;...&gt;**</code> - of an HTML tag **_must be on the same line_**, or the tag will be broken.
326   - This feature allows you to enter an unclosed angle bracket - as a greater than or less than symbol - and have it automatically rendered as if you had entered its HTML character, `&lt;`, ex: <code>**a &lt; b**</code>
327   - %T% If you're pasting in preformatted HTML text and notice problems, check the file in a text processor with no text wrap. Also, save without hard line breaks on text wrap, in your HTML editing program.
328
329 ## <a name="Hyperlinks"></a> Hyperlinks
330
331 Being able to create links without any formatting required is a core TWiki feature, made possible with [[WikiWords]]. New TWiki linking rules are a simple extension of the syntax that provide a new set of flexible options.
332
333 ### <a name="Internal Links"></a> Internal Links
334
335 - [[GoodStyle]] is a [[WikiWord]] that links to the GoodStyle topic located in the current %WIKITOOLNAME% web.
336
337 - [[NotExistingYet]] is a topic waiting to be written. Create the topic by clicking on the **?**. (Try clicking, but then, **Cancel** - creating the topic would wreck this example!)
338
339 ### <a name="External Links"></a> External Links
340
341 - `http://...`, `https://...`, `ftp://...`, `gopher://...`, `news://...`, `file://...`, `telnet://...` and `mailto:...@...` are linked automatically.
342
343 - Email addresses like `name@domain.com` are linked automatically.
344
345 - `[[Square bracket rules]]` let you easily create [[non-WikiWord links|Main/WebHome#SquareBrackets]].
346   - You can also write `[[http://yahoo.com Yahoo home page]]` as an easier way of doing external links with descriptive text for the link, such as [Yahoo home page](http://yahoo.com/).
347
348 ## <a name="TWiki Variables"></a> TWiki Variables
349
350 Variables are names that are enclosed in percent signs `%` that are expanded on the fly.
351
352 - `%TOC%` : Automatically generates a table of contents based on headings in a topic - see the top of this page for an example.
353
354 - `%WEB%` : The current web, is **%WEB%**.
355
356 - `%TOPIC%` : The current topic name, is **%TOPIC%**.
357
358 - `%ATTACHURL%` : The attachment URL of the current topic. Example usage: If you attach a file to a topic you can refer to it as <code>**%ATTACHURL%/image.gif**</code> to show the URL of the file or the image in your text.
359
360 - `%INCLUDE{"SomeTopic"}%` : Server side include, includes another topic. The current %WIKITOOLNAME% web is the default web. Example: <code>**%INCLUDE\{"TWiki.SiteMap"\}%**</code>
361
362 - `%SEARCH{"sushi"}%` : Inline search showing the search result embedded in a topic. [[FormattedSearch]] gives you control over formatting, used to create web-based applications.
363
364 - [[TWikiPreferences]] defines site-wide variables. Among others:
365   - **Line break:** Write <code><span><font>%BR%</font></span></code> to start a new line.
366   - **Colored text:** Write: <code><span><font> %RED% Red %ENDCOLOR% and %BLUE% blue %ENDCOLOR% colors</font></span></code> to get: %RED% Red %ENDCOLOR% and %BLUE% blue %ENDCOLOR% colors.
367   - **Documentation Graphics:** Write: <code><span><font> %H% Help, %T% Tip, %X% Alert</font></span></code> to get: %H% Help, %T% Tip, %X% Alert. For more info see [[TWikiDocGraphics]].
368
369 - There are many more variables, see **[[TWikiVariables]]**.
370
371 - To "escape" a percent sign that would otherwise be interpreted as a variable, add `<nop>` after the first percent sign. Write: <code><span><font> %&lt;nop&gt;SOMEVARIABLE% </font></span></code> to get: %SOMEVARIABLE%.
372
373 ## <a name="TWikiPlugin Formatting Extension"></a><a name="_TWikiPlugin Formatting Extensio"></a> TWikiPlugin Formatting Extensions
374
375 Plugins provide additional text formatting capabilities and can extend the functionality of %WIKITOOLNAME% into many other areas. For example, the optional [SpreadSheetPlugin](http://twiki.org/cgi-bin/view/Plugins/SpreadSheetPlugin) lets you create a spreadsheet with the same basic notation used in TWiki tables.
376
377 Available Plugins are located in the [Plugins](http://twiki.org/cgi-bin/view/Plugins) web on TWiki.org. Currently enabled plugins on this TWiki installation, as listed by `%PLUGINDESCRIPTIONS%`:
378
379 - [[SpreadSheetPlugin]] <span>(any TWiki, 10197)</span>:
380 - [[CommentPlugin]] <span>(Dakar, 11359)</span>: Allows users to quickly post comments to a page without an edit/preview/save cycle
381 - [[EditTablePlugin]] <span>(any TWiki, 11646)</span>:
382 - [[InterwikiPlugin]] <span>(Dakar, $Rev: 11935$)</span>:
383 - [[PreferencesPlugin]] <span>(Dakar, 9839)</span>:
384 - [[SlideShowPlugin]] <span>(Any TWiki, $Rev: 12847$)</span>:
385 - [[SmiliesPlugin]] <span>(Dakar, 8154)</span>:
386 - [[TablePlugin]] <span>(1.020, 12339)</span>:
387 - [[TwistyPlugin]] <span>(1.2.0, $Rev: 12154$)</span>:
388
389 Check on current Plugin status and settings for this site in [[TWikiPreferences]].
390
391 ## <a name="Common Editing Errors"></a> Common Editing Errors
392
393 TWiki formatting rules are fairly simple to use and quick to type. However, there are some things to watch out for, taken from the [[TextFormattingFAQ]]:
394
395 - **Q:** Text enclosed in angle brackets like `<filename>` is not displayed. How can I show it as it is?
396   - **A:** The `'<'` and `'>'` characters have a special meaning in HTML, they define HTML tags. You need to escape them, so write `'&lt;'` instead of `'<'`, and `'&gt;'` instead of `'>'`. <br /> Example: Type `'prog &lt;filename&gt;'` to get `'prog <filename>'`.
397
398 - **Q:** Why is the `'&'` character sometimes not displayed?
399   - **A:** The `'&'` character has a special meaning in HTML, it starts a so called character entity, i.e. `'&copy;'` is the `©` copyright character. You need to escape `'&'` to see it as it is, so write `'&amp;'` instead of `'&'`. <br /> Example: Type `'This &amp; that'` to get `'This & that'`.
400
401 -- [[MikeMannix]] - 02 Dec 2001 <br /> -- [[PeterThoeny]] - 15 Jul 2003