Edgewall Software

Changes between Version 18 and Version 19 of WikiFormatting


Ignore:
Timestamp:
Nov 16, 2004, 6:07:45 AM (19 years ago)
Author:
daniel
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WikiFormatting

    v18 v19  
    11= WikiFormatting =
    22
    3 Wiki serves as the core component of Trac, which tightly integrates all the other parts of Trac into flexible and powerful system.
     3Wiki markup is a core feature in Trac, tightly integrating all the other parts of Trac into flexible and powerful whole.
     4
    45Trac has a built in small and powerful wiki rendering engine. This wiki engine implements an ever growing subset of the commands from other popular Wikis especially [http://moin.sf.net/ MoinWiki].
    56
    6 This page demonstrates some of the formatting commands available in the Trac Wiki.
     7This page demonstrates the formatting syntax available anywhere WikiFormatting is allowed.
    78
    89== Font styles ==
     
    1920== Heading ==
    2021
    21 You can create heading by starting a line with one up to five equal signs
    22 followed by a space and the headline text. The line should end with a space
    23 followed by the same number of equal signs.
     22You can create heading by starting a line with one up to five ''equal\\ '=' characters
     23followed by a single space and the headline text. The line should end with a space
     24followed by the same number of ''equal'' characters.
    2425
    2526''Note: As of writing, headings cannot contain TracLinks.''
     
    3536
    3637A new text paragraph is created whenever two blocks of text are separated
    37 by an empty line. A newline can also be inserted like this:
     38by one or more empty lines.
     39
     40A forced line break can also be inserted, using:
    3841{{{
    3942Line 1[[BR]]Line 2
     
    4346Line 1[[BR]]Line 2
    4447
    45  Text paragraphs can also be indented by starting the lines with a few spaces.
     48  Text paragraphs can be indented by starting the lines with two or more spaces.
     49
    4650== Lists ==
     51The wiki supports both ordered/numbered and unordered lists.
     52
    4753Example:
    4854{{{
     
    6571
    6672== Preformatted text ==
    67 Block quotes, also know as preformatted text, is suitable for source code snippets, notes and examples. Use three ''curly braces'' wrapped around the text:
     73Block quotes, preformatted text, are suitable for source code snippets, notes and examples. Use three ''curly braces'' wrapped around the text to define a block quote:
    6874 
     75Example:
    6976{{{
    7077 {{{
     
    93100== Links ==
    94101
    95 Hyperlinks are automatically created for WikiPageNames and urls. !WikiPageLinks can be disabled by
    96 prepending a bang (!) character like this {{{!WikiPageLink}}}.
    97 
    98 For example:
     102!Hyperlinks are automatically created for WikiPageNames and urls. !WikiPageLinks can be disabled by
     103prepending an exclamation mark (!) character, such as {{{!WikiPageLink}}}.
     104
     105Examples:
    99106
    100107 TitleIndex, http://www.edgewall.com/.
     
    111118 * [wiki:TitleIndex Title Index]
    112119
    113 === Intra Trac Links ===
    114 
    115 Trac allows Wiki pages to link directly to other parts of the Trac system.
     120=== Trac Links ===
     121
     122Wiki pages can link directly to other parts of the Trac system.
    116123Pages can refer to tickets, reports, changesets, milestones, source files and
    117 other Wiki pages in the following notation:
     124other Wiki pages using the following notation:
    118125 * Tickets: '''!#1''' or '''!ticket:1'''
    119126 * Reports: '''!{1}''' or '''!report:1'''
     
    132139 * A specific file revision: source:/trunk/COPYING#200
    133140
    134 See TracLinks for more information about intra-trac linking.
     141See TracLinks for more in-depth information.
    135142
    136143== Escaping Links and WikiNames ==
    137144You may avoid making hyperlinks out of TracLinks by preceding an expression with a single '!' (exclamation mark).
    138145
    139 
    140 {{{
    141 
     146{{{
    142147 !NoHyperLink
    143148 !#42 is not a link
     
    150155== Images ==
    151156
    152 Urls ending with .png, .gif or .jpg will be converted to an IMG-tag.
     157Urls ending with .png, .gif or .jpg are automatically interpreted as image links, and converted to IMG tags.
    153158
    154159Example:
     
    171176
    172177== Processors ==
    173 Trac supports alternative markup formats using WikiProcessors. For example, processors are used to write pages in [wiki:WikiRestructuredText reStructuredText] or [wiki:WikiHtml HTML]. See WikiProcessors for documentation.
     178Trac supports alternative markup formats using WikiProcessors. For example, processors are used to write pages in [wiki:WikiRestructuredText reStructuredText] or [wiki:WikiHtml HTML].
     179
     180See WikiProcessors for more information.
    174181
    175182'''Example 1:'''
     
    208215   Test()
    209216}}}
     217
    210218== Miscellaneous ==
    211219