Edgewall Software

Changes between Version 51 and Version 52 of WikiFormatting


Ignore:
Timestamp:
Oct 31, 2005, 1:23:57 PM (19 years ago)
Author:
Christopher Lenz
Comment:

Cleanup

Legend:

Unmodified
Added
Removed
Modified
  • WikiFormatting

    v51 v52  
    1111
    1212
    13 == Font styles ==
     13== Font Styles ==
    1414
    1515The Trac wiki supports the following font styles:
     
    2222 * ~~strike-through~~
    2323 * ^superscript^
    24  * ,,subscript,,.
     24 * ,,subscript,,
    2525}}}
    2626
     
    3333 * ~~strike-through~~
    3434 * ^superscript^
    35  * ,,subscript,,.
    36 
    37 Strictly speaking, the `{{{...}}}` and {{{`...`}}} commands do not only select a monospace font, but additionally mark the surrounded text as preformatted. No further wiki processing is done on this text.
    38 
    39 == Heading ==
    40 
    41 You can create heading by starting a line with one up to five ''equal'' "=" characters
     35 * ,,subscript,,
     36
     37Note that the `{{{...}}}` and {{{`...`}}} commands not only select a monospace font, but also treat their content as verbatim text, meaning that no further wiki processing is done on this text.
     38
     39== Headings ==
     40
     41You can create heading by starting a line with one up to five ''equal'' characters ("=")
    4242followed by a single space and the headline text. The line should end with a space
    43 followed by the same number of ''equal'' characters.
     43followed by the same number of ''='' characters.
    4444
    4545Example:
     
    5858== Paragraphs ==
    5959
    60 A new text paragraph is created whenever two blocks of text are separated
    61 by one or more empty lines.
     60A new text paragraph is created whenever two blocks of text are separated by one or more empty lines.
    6261
    6362A forced line break can also be inserted, using:
     
    6968Line 1[[BR]]Line 2
    7069
    71   Text paragraphs can be indented by starting the lines with two or more spaces.
    72 
    7370
    7471== Lists ==
    7572
    7673The wiki supports both ordered/numbered and unordered lists.
    77 There must be a space preceding the star "*" or number "1.", or nothing will happen.
    7874
    7975Example:
     
    9793 1. Item 2
    9894
    99 
    100 == Definition lists ==
     95Note that there must be one or more spaces preceding the list item markers, otherwise the list will be treated as a normal paragraph.
     96
     97
     98== Definition Lists ==
    10199
    102100The wiki also supports definition lists.
     
    121119
    122120
    123 == Preformatted text ==
    124 
    125 Block 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.
     121== Preformatted Text ==
     122
     123Block containing preformatted text are suitable for source code snippets, notes and examples. Use three ''curly braces'' wrapped around the text to define a block quote. The curly braces need to be on a separate line.
    126124 
    127125Example:
     
    139137}}}
    140138
     139
    141140== Blockquotes ==
    142141
     
    166165[wiki:WikiRestructuredText#BiggerReSTExample reStructuredText].
    167166
     167
    168168== Links ==
    169169
    170 Hyperlinks are automatically created for WikiPageNames and urls.
    171 !WikiPageLinks can be disabled by
    172 prepending an exclamation mark "!" character, such as {{{!WikiPageLink}}}.
     170Hyperlinks are automatically created for WikiPageNames and URLs. !WikiPageLinks can be disabled by prepending an exclamation mark "!" character, such as {{{!WikiPageLink}}}.
    173171
    174172Example:
     
    180178 TitleIndex, http://www.edgewall.com/, !NotAlink
    181179
    182 Links can be given a more descriptive title by writing the link followed by
    183 a space and a title and all this inside square brackets.
    184 If the descriptive title is omitted, then the explicit prefix is disguarded,
    185 unless the link is an external link. This can be useful for wiki pages
    186 not adhering to the WikiPageNames convention.
    187 
    188 Like this:
     180Links can be given a more descriptive title by writing the link followed by a space and a title and all this inside square brackets.  If the descriptive title is omitted, then the explicit prefix is disguarded, unless the link is an external link. This can be useful for wiki pages not adhering to the WikiPageNames convention.
     181
     182Example:
    189183{{{
    190184 * [http://www.edgewall.com/ Edgewall Software]
     
    201195=== Trac Links ===
    202196
    203 Wiki pages can link directly to other parts of the Trac system.
    204 Pages can refer to tickets, reports, changesets, milestones, source files and
    205 other Wiki pages using the following notation:
     197Wiki pages can link directly to other parts of the Trac system. Pages can refer to tickets, reports, changesets, milestones, source files and other Wiki pages using the following notations:
    206198{{{
    207199 * Tickets: #1 or ticket:1
    208200 * Reports: {1} or report:1
    209201 * Changesets: r1, [1] or changeset:1
    210  * Revision Logs: r1:3, [1:3] or log:branches/0.9-stable#1:3
     202 * Revision Logs: r1:3, [1:3] or log:branches/0.8-stable#1:3
    211203 * Wiki pages: CamelCase or wiki:CamelCase
    212204 * Milestones: milestone:1.0 or milestone:"End-of-days Release"
     
    221213 * Reports: {1} or report:1
    222214 * Changesets: r1, [1] or changeset:1
    223  * Revision Logs: r1:3, [1:3] or log:branches/0.8-stable#1000:2000
     215 * Revision Logs: r1:3, [1:3] or log:branches/0.8-stable#1:3
    224216 * Wiki pages: CamelCase or wiki:CamelCase
    225217 * Milestones: milestone:1.0 or milestone:"End-of-days Release"
     
    236228You may avoid making hyperlinks out of TracLinks by preceding an expression with a single "!" (exclamation mark).
    237229
     230Example:
    238231{{{
    239232 !NoHyperLink
     
    259252http://www.edgewall.com/gfx/trac_example_image.png
    260253
    261 However, this doesn't give much control over the display mode.
    262 This way of inserting images is deprecated in favor of the more powerful `Image` macro
    263 (see WikiMacros).
     254However, this doesn't give much control over the display mode. This way of inserting images is deprecated in favor of the more powerful `Image` macro (see WikiMacros).
    264255
    265256
    266257== Macros ==
    267258
    268 Macros are ''custom functions'' to insert dynamic content in a page.
    269 See WikiMacros for usage.
     259Macros are ''custom functions'' to insert dynamic content in a page.
    270260
    271261Example:
     
    277267 [[Timestamp]]
    278268
     269See WikiMacros for more information, and a list of installed macros.
     270
    279271
    280272== Processors ==
    281273
    282 Trac supports alternative markup formats using WikiProcessors.
    283 For example, processors are used to write pages in
     274Trac supports alternative markup formats using WikiProcessors. For example, processors are used to write pages in
    284275[wiki:WikiRestructuredText reStructuredText] or [wiki:WikiHtml HTML].
    285276
    286 See WikiProcessors for more information.
    287 
    288 '''Example 1:'''
     277Example 1:
    289278{{{
    290279#!html
     
    301290}}}
    302291
    303 '''Example 2:'''
     292Example:
    304293{{{
    305294#!html
     
    333322}}}
    334323
     324See WikiProcessors for more information.
     325
     326
    335327== Miscellaneous ==
    336328
     
    347339
    348340----
    349 
    350341See also: TracLinks, TracGuide, WikiHtml, WikiMacros, WikiProcessors, TracSyntaxColoring.
    351 
    352 ----
    353