Difference: TextFormattingFAQ (5 vs. 6)

Revision 62001-09-07 - MikeMannix

Line: 1 to 1
Changed:
<
<
Text Formatting FAQ
>
>
Text Formatting FAQ
 
Changed:
<
<
This topic has answers to frequently asked questions about text formatting. TextFormattingRules has more on formatting rules in general. It also has links to HTML documentation.
>
>
  • The most frequently asked questions about text formatting are answered here.
 
Changed:
<
<
  • Q: How do I make a separator?
  • Q: How do I create a title or a heading?
  • Q: Text enclosed in angle brackets like <filename> is not displayed. How can I show it as it is?
  • Q: Some words (like WinAPI) have an unwanted question mark at the end. How can I prevent that?
  • Q: How can I write fixed font text?
  • Q: Text I enter gets wrapped around. How can I keep the formatting as it is?
  • Q: How do I create tables?
  • Q: Can I include images and pictures?
  • Q: Can I write colored text?
>
>
 
Added:
>
>
 
Changed:
<
<
Q: How do I make a separator?
>
>

How do I make a separator?

  You can make a horizontal separator by writing 4 or more dashes at the beginning of a line.


Changed:
<
<
Q: How do I create a title or a heading?
>
>

How do I create a title or a heading?

 
Changed:
<
<
The most simple way is to enclose it in '*' Asterisk characters or '_' Underscore charcters.
>
>
The most simple way is to enclose it in '*' Asterisk characters or '_' Underscore characters.
  This is an example header enclosed in Asterisk characters
Line: 33 to 26
 

This is an HTML heading


Changed:
<
<
Q: Text enclosed in angle brackets like <filename> is not displayed. How can I show it as it is?
>
>

Text enclosed in angle brackets like <filename> is not displayed. How can I show it as it is?

  TWiki interprets text as HTML. The '<' and '>' characters are used to define HTML commands. Any valid text within angle brackets gets interpreted by the browser as an HTML command. Invalid text is ignored, that's why it doesn't show up.
Line: 48 to 41
 
    • Example: Write {is-writable} instead of <is-writable>


Changed:
<
<
Q: Some words (like WinAPI) have an unwanted question mark at the end. How can I prevent that?
>
>

Some words (like WinAPI) have an unwanted question mark at the end. How can I prevent that?

  A question mark after a word is a link to a not yet existing topic. For example, WinAPI is a valid WikiName, but the actual topic WinAPI does not exist.

If you do not intend to create a topic for a valid WikiWord, you can prevent it being linked by putting an HTML tag in front of it. I usually use <nop>. This is a non existing HTML tag, so a browser just ignores it.

Changed:
<
<
  • Example text:
    WinAPI as it is, <nop>WinAPI with preceeding NOP.
  • Example output:
    WinAPI as it is, WinAPI with preceeding NOP.
>
>
  • Example text:
    WinAPI as it is, <nop>WinAPI with preceding NOP.
  • Example output:
    WinAPI as it is, WinAPI with preceding NOP.
 
Changed:
<
<
Q: How can I write fixed font text?
>
>

How can I write fixed font text?

  Enclose text in "=" equal signs.
Line: 70 to 61
 Alternatively you could also use preformatted text, see next question for details.


Changed:
<
<
Q: Text I enter gets wrapped around. How can I keep the formatting as it is?
>
>

Text I enter gets wrapped around. How can I keep the formatting as it is?

  TWiki interprets text as HTML. It is possible to use preformatted text to work around this. Use the preformatted HTML tags to keep the new line of text as it is. Do so by enclosing the text with <PRE> and </PRE> tags, e.g.

Line: 86 to 76
 It is recommended to use preformatting for tables and source code.


Changed:
<
<
Q: How do I create tables?
>
>

How do I create tables?

  There are three possibilities:
  1. Use Wiki rule with "|" vertical bars.
Line: 137 to 126
  _3. Use preformatted text with <PRE> tags_
Changed:
<
<
See Q: Text I enter gets wrapped around. How can I keep the formatting as it is?
>
>
Text I enter gets wrapped around. How can I keep the formatting as it is? See "Text enclosed..."
 
Changed:
<
<
Q: Can I include images and pictures?
>
>

Can I include images and pictures?

  Yes, this is possible. The easiest way of including images is to attach a GIF or JPG file to a topic and then to include it with text %ATTACHURL%/myImage.gif . FileAttachment has more.
Line: 162 to 150
 
  • Example output:
    TWiki logo.


Changed:
<
<
Q: Can I write colored text?
>
>

Can I write colored text?

  Place text you would like to specify a color inside <FONT COLOR="colorCode"> and </FONT> tags.
Line: 199 to 186
 
  • Example output:
    Red color draws attention.


Added:
>
>
  -- PeterThoeny - 18 Aug 2000
 
This site is powered by the TWiki collaboration platform Powered by PerlCopyright © 1999-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback
Note: Please contribute updates to this topic on TWiki.org at TWiki:TWiki.TextFormattingFAQ.