Changes between Version 3 and Version 4 of WikiFormatting


Ignore:
Timestamp:
Apr 13, 2010, 1:41:48 AM (14 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiFormatting

    v3 v4  
    55
    66Trac 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,
    7 especially [http://moinmoin.wikiwikiweb.de/ MoinMoin].
    8 
    9 
    10 This page demonstrates the formatting syntax available anywhere WikiFormatting is allowed.
     7especially [http://moinmo.in/ MoinMoin] and [trac:WikiCreole].
     8
     9
     10This page will give you an in-depth explanation of the wiki markup available anywhere WikiFormatting is allowed.
     11
     12The ''Cheat sheet'' below gives you a quick overview for the most common syntax, each link in the ''Category'' column will lead you to the more detailed explanation later in this page.
     13
     14A few other wiki pages present the advanced features of the Trac wiki markup in more depth:
     15 - TracLinks covers all the possible ways to refer precisely to any Trac resource or parts thereof,
     16 - WikiPageNames talks about the various names a wiki page can take, CamelCase or not
     17 - WikiMacros lists the macros available for generating dynamic content,
     18 - WikiProcessors and WikiHtml details how parts of the wiki text can be processed in special ways
     19
     20
     21== Cheatsheet ==
     22
     23||= '''Category''' =||= '''Wiki Markup''' =||= '''Display''' =||
     24|-----------------------------------------------------------
     25{{{#!th rowspan=3
     26[#FontStyles Font Styles]
     27}}}
     28|| `'''bold'''`, `''italic''`, `'''''Wikipedia style'''''` || \
     29|| '''bold''', ''italic'', '''''Wikipedia style''''' ||
     30|| {{{`monospaced and ''nowiki''`}}} || \
     31|| `monospaced and nowiki` ||
     32|| `**bold**`, `//italic//`, `**//!WikiCreole style//**` || \
     33|| **bold**, //italic//, **//!WikiCreole style//** ||
     34|-----------------------------------------------------------
     35||= [#Headings Headings] =||\
     36{{{#!td
     37 {{{
     38 == Level 2 ==
     39 === Level 3 ^([#hn note])^
     40 }}}
     41}}}
     42{{{#!td style="padding-left: 2em"
     43== Level 2
     44=== Level 3 ^([#hn note])^
     45}}}
     46|-----------------------------------------------------------
     47||= [#Paragraphs Paragraphs]  =||\
     48{{{#!td
     49 {{{
     50 First paragraph
     51 on multiple lines.
     52
     53 Second paragraph.
     54 }}}
     55}}}
     56{{{#!td
     57First paragraph
     58on multiple lines.
     59
     60Second paragraph.
     61}}}
     62|-----------------------------------------------------------
     63||= [#Lists Lists] =||\
     64{{{#!td
     65 {{{
     66 * bullets list
     67   on multiple paragraphs
     68   1. nested list
     69     a. different numbering
     70        styles
     71 }}}
     72}}}
     73{{{#!td
     74* bullets list
     75  on multiple paragraphs
     76  1. nested list
     77    a. different numbering
     78       styles
     79}}}
     80|-----------------------------------------------------------
     81{{{#!th
     82[#DefinitionLists Definition Lists]
     83}}}
     84{{{#!td
     85 {{{
     86  term:: definition on
     87         multiple paragraphs
     88 }}}
     89}}}
     90{{{#!td
     91 term:: definition on
     92        multiple paragraphs
     93}}}
     94|-----------------------------------------------------------
     95||= [#PreformattedText Preformatted Text] =||\
     96{{{#!td
     97 {{{
     98 {{{
     99 multiple lines, ''no wiki''
     100       white space respected
     101 }}}
     102 }}}
     103}}}
     104{{{#!td
     105 {{{
     106 multiple lines, ''no wiki''
     107       white space respected
     108 }}}
     109}}}
     110|-----------------------------------------------------------
     111||= [#Blockquotes Blockquotes] =||\
     112{{{#!td
     113 {{{
     114   if there's some leading
     115   space the text is quoted
     116 }}}
     117}}}
     118{{{#!td
     119 if there's some leading
     120 space the text is quoted
     121}}}
     122|-----------------------------------------------------------
     123||= [#DiscussionCitations Discussion Citations] =||\
     124{{{#!td
     125 {{{
     126 >> ... (I said)
     127 > (he replied)
     128 }}}
     129}}}
     130{{{#!td
     131>>... (I said)
     132> (he replied)
     133}}}
     134|-----------------------------------------------------------
     135||= [#Tables Tables] =||\
     136{{{#!td
     137 {{{
     138 ||= Table Header =|| Cell ||
     139 ||||  (details below)  ||
     140 }}}
     141}}}
     142{{{#!td
     143||= Table Header =|| Cell ||
     144||||  (details below)  ||
     145}}}
     146|-----------------------------------------------------------
     147{{{#!th rowspan=2
     148[#Links Links]
     149}}}
     150|| `http://trac.edgewall.org` ||\
     151|| http://trac.edgewall.org ||
     152|| `WikiFormatting (CamelCase)` ||\
     153|| WikiFormatting (CamelCase) ||
     154|-----------------------------------------------------------
     155{{{#!th rowspan=5
     156[#TracLinks TracLinks]
     157}}}
     158|| `wiki:WikiFormatting`, `wiki:"WikiFormatting"` ||\
     159|| wiki:WikiFormatting, wiki:"WikiFormatting" ||
     160|| `#1 (ticket)`, `[1] (changeset)`, `{1} (report)` ||\
     161|| #1 (ticket), [1] (changeset), {1} (report) ||
     162|| `ticket:1, ticket:1#comment:1` ||\
     163|| ticket:1, ticket:1#comment:1 ||
     164|| `Ticket [ticket:1]`, `[ticket:1 ticket one]` ||\
     165|| Ticket [ticket:1], [ticket:1 ticket one] ||
     166|| `Ticket [[ticket:1]]`, `[[ticket:1|ticket one]]` ||\
     167|| Ticket [[ticket:1]], [[ticket:1|ticket one]] ||
     168|-----------------------------------------------------------
     169{{{#!th rowspan=2
     170[#EscapingLinksandWikiPageNames Escaping Markup]
     171}}}
     172|| `!'' doubled quotes` ||\
     173|| !'' doubled quotes ||
     174|| `!wiki:WikiFormatting`, `!WikiFormatting` ||\
     175|| !wiki:WikiFormatting, !WikiFormatting ||
     176|-----------------------------------------------------------
     177||= [#Images Images] =|| `[[Image(`''link''`)]]` || [[Image(htdocs:../common/trac_logo_mini.png)]] ||
     178|-----------------------------------------------------------
     179{{{#!th rowspan=2
     180[#Macros Macros]
     181}}}
     182|| `[[MacroList(*)]]` ||  ''(short list of all available macros)''  ||
     183|| `[[Image?]]` ||  ''(help for the Image macro)''  ||
     184|-----------------------------------------------------------
     185||= [#Processors Processors] =||\
     186{{{#!td
     187 {{{
     188 {{{
     189 #!div style="font-size: 80%"
     190 Code highlighting:
     191   {{{#!python
     192   hello = lambda: "world"
     193   }}}
     194 }}}
     195 }}}
     196}}}
     197{{{#!td style="padding-left: 2em"
     198 {{{
     199 #!div style="font-size: 80%"
     200 Code highlighting:
     201   {{{#!python
     202   hello = lambda: "world"
     203   }}}
     204 }}}
     205}}}
     206|-----------------------------------------------------------
     207||= [#Comments Comments] =||\
     208{{{#!td
     209 {{{
     210 {{{#!comment
     211 Note to Editors: ...
     212 }}}
     213 }}}
     214}}}
     215{{{#!td style="padding-left: 2em"
     216 {{{#!comment
     217 Note to Editors: ...
     218 }}}
     219}}}
     220|-----------------------------------------------------------
     221||= [#Miscellaneous Miscellaneous] =||\
     222{{{#!td
     223 {{{
     224 Line [[br]] break
     225 Line \\ break
     226 ----
     227 }}}
     228}}}
     229{{{#!td style="padding-left: 2em"
     230Line [[br]] break
     231Line \\ break
     232----
     233}}}
    11234
    12235
     
    14237
    15238The Trac wiki supports the following font styles:
    16 {{{
    17  * '''bold''', '''!''' can be bold too''', and '''! '''
     239||= Wiki Markup =||= Display =||
     240{{{#!td
     241  {{{
     242   * '''bold''',
     243     ''' triple quotes !'''
     244     can be bold too if prefixed by ! ''',
     245   * ''italic''
     246   * '''''bold italic''''' or ''italic and
     247     ''' italic bold ''' ''
     248   * __underline__
     249   * {{{monospace}}} or `monospace`
     250     (hence `{{{` or {{{`}}} quoting)
     251   * ~~strike-through~~
     252   * ^superscript^
     253   * ,,subscript,,
     254   * **also bold**, //italic as well//,
     255     and **'' bold italic **'' //(since 0.12)//
     256  }}}
     257}}}
     258{{{#!td
     259 * '''bold''',
     260   ''' triple quotes !'''
     261   can be bold too if prefixed by ! ''',
    18262 * ''italic''
    19  * '''''bold italic'''''
     263 * '''''bold italic''''' or ''italic and
     264   ''' italic bold ''' ''
    20265 * __underline__
    21266 * {{{monospace}}} or `monospace`
     267   (hence `{{{` or {{{`}}} quoting)
    22268 * ~~strike-through~~
    23269 * ^superscript^
    24270 * ,,subscript,,
    25 }}}
    26 
    27 Display:
    28  * '''bold''', '''!''' can be bold too''', and '''! '''
    29  * ''italic''
    30  * '''''bold italic'''''
    31  * __underline__
    32  * {{{monospace}}} or `monospace`
    33  * ~~strike-through~~
    34  * ^superscript^
    35  * ,,subscript,,
     271 * **also bold**, //italic as well//,
     272   and **'' bold italic **'' //(since 0.12)//
     273}}}
    36274
    37275Notes:
    38276 * `{{{...}}}` 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.
    39277 * {{{ ! }}} tells wiki parser to not take the following characters as wiki format, so pay attention to put a space after !, e.g. when ending bold.
     278 * all the font styles marks have to be used in opening/closing pairs,
     279   and they must nest properly (in particular, an `''` italic can't be paired
     280   with a `//` one, and `'''` can't be paired with `**`)
     281
    40282
    41283== Headings ==
    42284
    43 You can create heading by starting a line with one up to five ''equal'' characters ("=")
    44 followed by a single space and the headline text. The line should end with a space
    45 followed by the same number of ''='' characters.
    46 The heading might optionally be followed by an explicit id. If not, an implicit but nevertheless readable id will be generated.
     285You can create heading by starting a line with one up to six ''equal'' characters ("=")
     286followed by a single space and the headline text.
     287
     288[=#hn] The headline text can be followed by the same number of "=" characters, but this is no longer mandatory.
     289
     290Finally, the heading might optionally be followed by an explicit id. If not, an implicit but nevertheless readable id will be generated.
     291
     292||= Wiki Markup =||= Display =||
     293{{{#!td
     294  {{{
     295  = Heading =
     296  == Subheading
     297  === About ''this'' ===
     298  === Explicit id === #using-explicit-id-in-heading
     299  == Subheading #sub2
     300}}}
     301}}}
     302{{{#!td style="padding: 1em;"
     303  {{{
     304  #!div
     305  == Subheading
     306  === About ''this'' ===
     307  === Explicit id === #using-explicit-id-in-heading
     308  == Subheading #sub2
     309  }}}
     310}}}
     311
     312== Paragraphs ==
     313
     314A new text paragraph is created whenever two blocks of text are separated by one or more empty lines.
     315
     316A forced line break can also be inserted, using:
     317||= Wiki Markup =||= Display =||
     318{{{#!td
     319  {{{
     320  Line 1[[BR]]Line 2
     321  }}}
     322  {{{
     323  Paragraph
     324  one
     325
     326  Paragraph
     327  two
     328  }}}
     329}}}
     330{{{#!td
     331  Line 1[[BR]]Line 2
     332
     333  Paragraph
     334  one
     335
     336  Paragraph
     337  two
     338}}}
     339
     340== Lists ==
     341
     342The wiki supports both ordered/numbered and unordered lists.
    47343
    48344Example:
    49 {{{
    50 = Heading =
    51 == Subheading ==
    52 === About ''this'' ===
    53 === Explicit id === #using-explicit-id-in-heading
    54 }}}
    55 
    56 Display:
    57 = Heading =
    58 == Subheading ==
    59 === About ''this'' ===
    60 === Explicit id === #using-explicit-id-in-heading
    61 
    62 == Paragraphs ==
    63 
    64 A new text paragraph is created whenever two blocks of text are separated by one or more empty lines.
    65 
    66 A forced line break can also be inserted, using:
    67 {{{
    68 Line 1[[BR]]Line 2
    69 }}}
    70 Display:
    71 
    72 Line 1[[BR]]Line 2
    73 
    74 
    75 == Lists ==
    76 
    77 The wiki supports both ordered/numbered and unordered lists.
    78 
    79 Example:
    80 {{{
     345||= Wiki Markup =||= Display =||
     346{{{#!td
     347  {{{
     348   * Item 1
     349     * Item 1.1
     350        * Item 1.1.1   
     351        * Item 1.1.2
     352        * Item 1.1.3
     353     * Item 1.2
     354   * Item 2
     355  - items can start at the beginning of a line
     356    and they can span multiple lines
     357    - be careful though to continue the line
     358    with the appropriate indentation, otherwise
     359  that will start a new paragraph...
     360 
     361   1. Item 1
     362     a. Item 1.a
     363     a. Item 1.b
     364        i. Item 1.b.i
     365        i. Item 1.b.ii
     366   1. Item 2
     367  And numbered lists can also be restarted
     368  with an explicit number:
     369   3. Item 3
     370  }}}
     371}}}
     372{{{#!td
    81373 * Item 1
    82374   * Item 1.1
     
    86378   * Item 1.2
    87379 * Item 2
     380- items can start at the beginning of a line
     381  and they can span multiple lines
     382  - be careful though to continue the line
     383  with the appropriate indentation, otherwise
     384that will start a new paragraph...
    88385
    89386 1. Item 1
     
    93390      i. Item 1.b.ii
    94391 1. Item 2
    95 And numbered lists can also be given an explicit number:
     392And numbered lists can also be restarted with an explicit number:
    96393 3. Item 3
    97394}}}
    98395
    99 Display:
    100  * Item 1
    101    * Item 1.1
    102       * Item 1.1.1
    103       * Item 1.1.2
    104       * Item 1.1.3
    105    * Item 1.2
    106  * Item 2
    107 
    108  1. Item 1
    109    a. Item 1.a
    110    a. Item 1.b
    111       i. Item 1.b.i
    112       i. Item 1.b.ii
    113  1. Item 2
    114 And numbered lists can also be given an explicit number:
    115  3. Item 3
    116 
    117 Note that there must be one or more spaces preceding the list item markers, otherwise the list will be treated as a normal paragraph.
    118 
    119396
    120397== Definition Lists ==
    121398
    122 
    123399The wiki also supports definition lists.
    124400
    125 Example:
    126 {{{
     401||= Wiki Markup =||= Display =||
     402{{{#!td
     403  {{{
     404   llama::
     405     some kind of mammal, with hair
     406   ppython::
     407     some kind of reptile, without hair
     408     (can you spot the typo?)
     409  }}}
     410}}}
     411{{{#!td
    127412 llama::
    128413   some kind of mammal, with hair
     
    132417}}}
    133418
    134 Display:
    135  llama::
    136    some kind of mammal, with hair
    137  ppython::
    138    some kind of reptile, without hair
    139    (can you spot the typo?)
    140 
    141419Note that you need a space in front of the defined term.
    142420
     
    146424Block 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.
    147425 
    148 Example:
     426||= Wiki Markup =||= Display =||
     427{{{#!td
     428  {{{
     429  {{{
     430  def HelloWorld():
     431      print '''Hello World'''
     432  }}}
     433  }}}
     434}}}
     435{{{#!td
     436  {{{
     437  def HelloWorld():
     438      print '''Hello World'''
     439  }}}
     440}}}
     441
     442Note that this kind of block is also used for selecting lines that should be processed through WikiProcessors.
     443
     444== Blockquotes ==
     445
     446In order to mark a paragraph as blockquote, indent that paragraph with two spaces.
     447
     448||= Wiki Markup =||= Display =||
     449{{{#!td
    149450{{{
    150  {{{
    151   def HelloWorld():
    152       print "Hello World"
    153  }}}
    154 }}}
    155 
    156 Display:
    157 {{{
    158  def HelloWorld():
    159      print "Hello World"
    160 }}}
    161 
    162 
    163 == Blockquotes ==
    164 
    165 In order to mark a paragraph as blockquote, indent that paragraph with two spaces.
    166 
    167 Example:
    168 {{{
     451Paragraph
    169452  This text is a quote from someone else.
    170453}}}
    171 
    172 Display:
     454}}}
     455{{{#!td
     456Paragraph
    173457  This text is a quote from someone else.
     458}}}
    174459
    175460== Discussion Citations ==
     
    177462To delineate a citation in an ongoing discussion thread, such as the ticket comment area, e-mail-like citation marks (">", ">>", etc.) may be used. 
    178463
    179 Example:
    180 {{{
     464||= Wiki Markup =||= Display =||
     465{{{#!td
     466  {{{
     467  >> Someone's original text
     468  > Someone else's reply text
     469  >  - which can be any kind of Wiki markup
     470  My reply text
     471  }}}
     472}}}
     473{{{#!td
    181474>> Someone's original text
    182475> Someone else's reply text
     476>  - which can be any kind of Wiki markup
    183477My reply text
    184478}}}
    185479
    186 Display:
    187 >> Someone's original text
    188 > Someone else's reply text
    189 My reply text
    190 
    191 ''Note: Some WikiFormatting elements, such as lists and preformatted text, are  lost in the citation area.  Some reformatting may be necessary to create a clear citation.''
    192480
    193481== Tables ==
    194 
     482=== Simple Tables ===
    195483Simple tables can be created like this:
    196 {{{
     484||= Wiki Markup =||= Display =||
     485{{{#!td
     486  {{{
     487  ||Cell 1||Cell 2||Cell 3||
     488  ||Cell 4||Cell 5||Cell 6||
     489  }}}
     490}}}
     491{{{#!td style="padding: 2em;"
    197492||Cell 1||Cell 2||Cell 3||
    198493||Cell 4||Cell 5||Cell 6||
    199494}}}
    200495
    201 Display:
    202 ||Cell 1||Cell 2||Cell 3||
    203 ||Cell 4||Cell 5||Cell 6||
    204 
    205 Note that more complex tables can be created using
    206 [wiki:WikiRestructuredText#BiggerReSTExample reStructuredText].
     496Cell headings can be specified by wrapping the content in a pair of '=' characters.
     497Note that the '=' characters have to stick to the cell separators, like this:
     498||= Wiki Markup =||= Display =||
     499{{{#!td
     500  {{{
     501  ||        ||= stable =||= latest =||
     502  ||= 0.10 =||  0.10.5  || 0.10.6dev||
     503  ||= 0.11 =||  0.11.6  || 0.11.7dev||
     504  }}}
     505}}}
     506{{{#!td style="padding: 2em;"
     507||        ||= stable =||= latest =||
     508||= 0.10 =||  0.10.5  || 0.10.6dev||
     509||= 0.11 =||  0.11.6  || 0.11.7dev||
     510}}}
     511
     512Finally, specifying an empty cell means that the next non empty cell will span the empty cells. For example:
     513||= Wiki Markup =||= Display =||
     514{{{#!td
     515  {{{
     516  || 1 || 2 || 3 ||
     517  |||| 1-2 || 3 ||
     518  || 1 |||| 2-3 ||
     519  |||||| 1-2-3 ||
     520  }}}
     521}}}
     522{{{#!td style="padding: 2em;"
     523|| 1 || 2 || 3 ||
     524|||| 1-2 || 3 ||
     525|| 1 |||| 2-3 ||
     526|||||| 1-2-3 ||
     527}}}
     528
     529Note that if the content of a cell "sticks" to one side of the cell and only one, then the text will be aligned on that side. Example:
     530||= Wiki Markup =||= Display =||
     531{{{#!td
     532  {{{
     533  ||=Text =||= Numbers =||
     534  ||left align    ||        1.0||
     535  ||  center      ||        4.5||
     536  ||      right align||     4.5||
     537  || default alignment ||   2.5||
     538  ||default||         2.5||
     539  ||  default ||      2.5||
     540  || default ||       2.5||
     541  }}}
     542}}}
     543{{{#!td style="padding: 2em;"
     544||=Text =||= Numbers =||
     545||left align    ||        1.0||
     546||  center      ||        4.5||
     547||      right align||     4.5||
     548|| default alignment ||   2.5||
     549||default||         2.5||
     550||  default ||      2.5||
     551|| default ||       2.5||
     552}}}
     553
     554If contrary to the example above, the cells in your table contain more text, it might be convenient to spread a table row over multiple lines of markup. The `\` character placed at the end of a line after a cell separator tells Trac to not start a new row for the cells on the next line.
     555
     556||= Wiki Markup =||
     557{{{#!td
     558  {{{
     559  || this is column 1 [http://trac.edgewall.org/newticket new ticket] || \
     560  || this is column 2 [http://trac.edgewall.org/roadmap the road ahead] || \
     561  || that's column 3 and last one ||
     562  }}}
     563}}}
     564|-------------
     565||= Display =||
     566{{{#!td style="padding: 2em;"
     567|| this is column 1 [http://trac.edgewall.org/newticket new ticket] || \
     568|| this is column 2 [http://trac.edgewall.org/roadmap the road ahead] || \
     569|| that's column 3 and last one ||
     570}}}
     571
     572=== Complex Tables ===
     573
     574If the possibilities offered by the simple "pipe"-based markup for tables described above are not enough for your needs, you can create more elaborated tables by using [#Processors-example-tables WikiProcessor based tables].
    207575
    208576
     
    211579Hyperlinks are automatically created for WikiPageNames and URLs. !WikiPageLinks can be disabled by prepending an exclamation mark "!" character, such as {{{!WikiPageLink}}}.
    212580
    213 Example:
    214 {{{
    215  TitleIndex, http://www.edgewall.com/, !NotAlink
    216 }}}
    217 
    218 Display:
    219  TitleIndex, http://www.edgewall.com/, !NotAlink
    220 
    221 Links 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 discarded, unless the link is an external link. This can be useful for wiki pages not adhering to the WikiPageNames convention.
    222 
    223 Example:
    224 {{{
    225  * [http://www.edgewall.com/ Edgewall Software]
    226  * [wiki:TitleIndex Title Index]
    227  * [wiki:ISO9000]
    228 }}}
    229 
    230 Display:
    231  * [http://www.edgewall.com/ Edgewall Software]
    232  * [wiki:TitleIndex Title Index]
    233  * [wiki:ISO9000]
     581||= Wiki Markup =||= Display =||
     582{{{#!td
     583  {{{
     584  TitleIndex, http://www.edgewall.com/, !NotAlink
     585  }}}
     586}}}
     587{{{#!td
     588TitleIndex, http://www.edgewall.com/, !NotAlink
     589}}}
     590
     591Links can be given a more descriptive title by writing the link followed by a space and a title and all this inside square brackets.
     592If the descriptive title is omitted, then the explicit prefix is discarded, unless the link is an external link. This can be useful for wiki pages not adhering to the WikiPageNames convention.
     593
     594||= Wiki Markup =||= Display =||
     595{{{#!td
     596  {{{
     597   * [http://www.edgewall.com Edgewall Software]
     598   * [wiki:TitleIndex Title Index]
     599   * [wiki:TitleIndex]
     600   * [wiki:ISO9000]
     601  }}}
     602}}}
     603{{{#!td
     604   * [http://www.edgewall.com Edgewall Software]
     605   * [wiki:TitleIndex Title Index]
     606   * [wiki:TitleIndex]
     607   * [wiki:ISO9000]
     608}}}
     609
     610Following the [trac:WikiCreole] trend, the descriptive title can also be specified by writing the link followed by a pipe ('|') and a title and all this inside //double// square brackets.
     611
     612{{{#!td
     613  {{{
     614   * [[http://www.edgewall.com|Edgewall Software]]
     615   * [[wiki:TitleIndex|Title Index]]
     616     or even [[TitleIndex|Title Index]]
     617   * [[wiki:TitleIndex]]
     618     ''' but not ![[TitleIndex]]! '''
     619   * [[ISO9000]]
     620  }}}
     621}}}
     622{{{#!td
     623   * [[http://www.edgewall.com|Edgewall Software]]
     624   * [[wiki:TitleIndex|Title Index]]
     625     or even [[TitleIndex|Title Index]]
     626   * [[wiki:TitleIndex]]
     627     ''' but not ![[TitleIndex]]! '''
     628   * [[ISO9000]]
     629}}}
     630
     631'''Note''': the [trac:WikiCreole] style for links is quick to type and
     632certainly looks familiar as it's the one used on Wikipedia and in many
     633other wikis. Unfortunately it conflicts with the syntax for [#Macros macros].
     634So in the rare case when you need to refer to a page which is named after
     635a macro (typical examples being TitleIndex, InterTrac and InterWiki),
     636by writing `[[TitleIndex]]` you will actually call the macro instead of linking
     637to the page.
    234638
    235639== Trac Links ==
    236640
    237641Wiki 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:
    238 {{{
    239  * Tickets: #1 or ticket:1
    240  * Reports: {1} or report:1
    241  * Changesets: r1, [1] or changeset:1
    242  * ...
    243 }}}
    244 
    245 Display:
     642
     643||= Wiki Markup =||= Display =||
     644{{{#!td
     645  {{{
     646   * Tickets: #1 or ticket:1
     647   * Reports: {1} or report:1
     648   * Changesets: r1, [1] or changeset:1
     649   * ...
     650   * targeting other Trac instances,
     651     so called InterTrac links:
     652     - Tickets: #Trac1 or Trac:ticket:1
     653     - Changesets: [Trac1] or Trac:changeset:1
     654  }}}
     655}}}
     656{{{#!td
    246657 * Tickets: #1 or ticket:1
    247658 * Reports: {1} or report:1
    248659 * Changesets: r1, [1] or changeset:1
    249660 * ...
    250 
    251 There are many more flavors of Trac links, see TracLinks for more in-depth information.
     661 * targeting other Trac instances,
     662   so called InterTrac links:
     663   - Tickets: #Trac1 or Trac:ticket:1
     664   - Changesets: [Trac1] or Trac:changeset:1
     665}}}
     666
     667There are many more flavors of Trac links, see TracLinks for more in-depth information and a reference for all the default link resolvers.
    252668
    253669
     
    256672You may avoid making hyperlinks out of TracLinks by preceding an expression with a single "!" (exclamation mark).
    257673
    258 Example:
    259 {{{
     674||= Wiki Markup =||= Display =||
     675{{{#!td
     676  {{{
     677   !NoHyperLink
     678   !#42 is not a link
     679  }}}
     680}}}
     681{{{#!td
    260682 !NoHyperLink
    261683 !#42 is not a link
    262684}}}
    263 
    264 Display:
    265  !NoHyperLink
    266  !#42 is not a link
    267 
    268685
    269686== Images ==
     
    279696 * `[[Image(source:/trunk/trac/htdocs/trac_logo_mini.png)]]` (a file in repository)
    280697
    281 Example display: [[Image(htdocs:../common/trac_logo_mini.png)]]
    282 
     698||= Wiki Markup =||= Display =||
     699{{{#!td
     700  {{{
     701  [[Image(htdocs:../common/trac_logo_mini.png)]]
     702  }}}
     703}}}
     704{{{#!td
     705[[Image(htdocs:../common/trac_logo_mini.png)]]
     706}}}
    283707
    284708See WikiMacros for further documentation on the `[[Image()]]` macro.
     
    289713Macros are ''custom functions'' to insert dynamic content in a page.
    290714
    291 Example:
    292 {{{
    293  [[RecentChanges(Trac,3)]]
    294 }}}
    295 
    296 Display:
    297  [[RecentChanges(Trac,3)]]
     715||= Wiki Markup =||= Display =||
     716{{{#!td
     717  {{{
     718  [[RecentChanges(Trac,3)]]
     719  }}}
     720}}}
     721{{{#!td style="padding-left: 2em"
     722[[RecentChanges(Trac,3)]]
     723}}}
    298724
    299725See WikiMacros for more information, and a list of installed macros.
     726
     727The detailed help for a specific macro can also be obtained more directly by appending a "?" to the macro name.
     728
     729||= Wiki Markup =||= Display =||
     730{{{#!td
     731  {{{
     732  [[MacroList?]]
     733  }}}
     734}}}
     735{{{#!td style="padding-left: 2em"
     736[[MacroList?]]
     737}}}
    300738
    301739
     
    305743[wiki:WikiRestructuredText reStructuredText] or [wiki:WikiHtml HTML].
    306744
    307 Example 1:
    308 {{{
    309 #!html
    310 <pre class="wiki">{{{
    311 #!html
    312 &lt;h1 style="text-align: right; color: blue"&gt;HTML Test&lt;/h1&gt;
    313 }}}</pre>
    314 }}}
    315 
    316 Display:
     745||= Wiki Markup =||= Display =||
     746|--------------------------------------------------------
     747{{{#!td align="center" colspan=2 style="border: 0px; font-size: 90%"
     748
     749   [=#Processors-example-html Example 1:] HTML
     750
     751}}}
     752|--------------------------------------------------------
     753{{{#!td style="border: 0px"
     754  {{{
     755  {{{
     756  #!html
     757  <h1 style="text-align: right; color: blue">
     758   HTML Test
     759  </h1>
     760  }}}
     761  }}}
     762}}}
     763{{{#!td valign="top"  style="border: 0px"
     764
    317765{{{
    318766#!html
     
    320768}}}
    321769
    322 Example:
     770}}}
     771|--------------------------------------------------------
     772{{{#!td align="center" colspan=2 style="border: 0px; font-size: 90%"
     773
     774   [=#Processors-example-highlight Example 2:] Code Highlighting
     775
     776}}}
     777|--------------------------------------------------------
     778{{{#!td style="border: 0px"
     779  {{{
     780  {{{
     781  #!python
     782  class Test:
     783 
     784      def __init__(self):
     785          print "Hello World"
     786  if __name__ == '__main__':
     787     Test()
     788  }}}
     789  }}}
     790}}}
    323791{{{
    324 #!html
    325 <pre class="wiki">{{{
    326 #!python
    327 class Test:
    328 
    329     def __init__(self):
    330         print "Hello World"
    331 if __name__ == '__main__':
    332    Test()
    333 }}}</pre>
    334 }}}
    335 
    336 Display:
     792#!td valign="top"  style="border: 0px"
     793
    337794{{{
    338795#!python
     
    344801}}}
    345802
    346 Perl:
     803}}}
     804|--------------------------------------------------------
     805{{{#!td align="center" colspan=2 style="border: 0px; font-size: 90%"
     806
     807       [=#Processors-example-tables Example 3:] Complex Tables
     808
     809}}}
     810|--------------------------------------------------------
     811{{{#!td style="border: 0px"
     812  {{{
     813  {{{#!th rowspan=4 align=justify
     814  With the `#td` and `#th` processors,
     815  table cells can contain any content:
     816  }}}
     817  |----------------
     818  {{{#!td
     819    - lists
     820    - embedded tables
     821    - simple multiline content
     822  }}}
     823  |----------------
     824  {{{#!td
     825  As processors can be easily nested,
     826  so can be tables:
     827    {{{#!th
     828    Example:
     829    }}}
     830    {{{#!td style="background: #eef"
     831    || must be at the third level now... ||
     832    }}}
     833  }}}
     834  |----------------
     835  {{{#!td
     836  Even when you don't have complex markup,
     837  this form of table cells can be convenient
     838  to write content on multiple lines.
     839  }}}
     840  }}}
     841}}}
    347842{{{
    348 #!perl
    349 my ($test) = 0;
    350 if ($test > 0) {
    351     print "hello";
    352 }
     843#!td  valign="top"  style="border: 0px"
     844
     845  {{{#!th rowspan=4 align=justify
     846  With the `#td` and `#th` processors,
     847  table cells can contain any content:
     848  }}}
     849  |----------------
     850  {{{#!td
     851    - lists
     852    - embedded tables
     853    - simple multiline content
     854  }}}
     855  |----------------
     856  {{{#!td
     857  As processors can be easily nested,
     858  so can be tables:
     859    {{{#!th
     860    Example:
     861    }}}
     862    {{{#!td style="background: #eef"
     863    || must be at the third level now... ||
     864    }}}
     865  }}}
     866  |----------------
     867  {{{#!td
     868  Even when you don't have complex markup,
     869  this form of table cells can be convenient
     870  to write content on multiple lines.
     871  }}}
     872
    353873}}}
    354874
     
    359879
    360880Comments can be added to the plain text. These will not be rendered and will not display in any other format than plain text.
    361 {{{
    362 {{{
    363 #!comment
    364 Your comment here
    365 }}}
    366 }}}
    367 
     881
     882||= Wiki Markup =||= Display =||
     883{{{#!td
     884  {{{
     885  Nothing to
     886  {{{
     887  #!comment
     888  Your comment for editors here
     889  }}}
     890  see ;-)
     891  }}}
     892}}}
     893{{{#!td
     894  Nothing to
     895  {{{
     896  #!comment
     897  Your comment for editors here
     898  }}}
     899  see ;-)
     900}}}
    368901
    369902== Miscellaneous ==
    370903
    371 Four or more dashes will be replaced by a horizontal line (<HR>)
    372 
    373 Example:
    374 {{{
    375  ----
    376 }}}
    377 
    378 Display:
     904An horizontal line can be used to separated different parts of your page:
     905
     906||= Wiki Markup =||= Display =||
     907{{{#!td
     908  {{{
     909  Four or more dashes will be replaced
     910  by an horizontal line (<HR>)
     911  ----
     912  See?
     913  }}}
     914}}}
     915{{{#!td
     916Four or more dashes will be replaced
     917by an horizontal line (<HR>)
    379918----
    380 
    381 
    382 
    383 ----
    384 See also: TracLinks, TracGuide, WikiHtml, WikiMacros, WikiProcessors, TracSyntaxColoring.
     919See?
     920}}}
     921|----------------------------------
     922{{{#!td
     923  {{{
     924  "macro" style [[br]] line break
     925  }}}
     926}}}
     927{{{#!td
     928"macro" style [[br]] line break
     929}}}
     930|----------------------------------
     931{{{#!td
     932  {{{
     933  !WikiCreole style \\ line\\break
     934  }}}
     935}}}
     936{{{#!td
     937!WikiCreole style \\ line\\break
     938}}}

Search

Context Navigation

ZOO Sponsors

http://www.zoo-project.org/trac/chrome/site/img/geolabs-logo.pnghttp://www.zoo-project.org/trac/chrome/site/img/neogeo-logo.png http://www.zoo-project.org/trac/chrome/site/img/apptech-logo.png http://www.zoo-project.org/trac/chrome/site/img/3liz-logo.png http://www.zoo-project.org/trac/chrome/site/img/gateway-logo.png

Become a sponsor !

Knowledge partners

http://www.zoo-project.org/trac/chrome/site/img/ocu-logo.png http://www.zoo-project.org/trac/chrome/site/img/gucas-logo.png http://www.zoo-project.org/trac/chrome/site/img/polimi-logo.png http://www.zoo-project.org/trac/chrome/site/img/fem-logo.png http://www.zoo-project.org/trac/chrome/site/img/supsi-logo.png http://www.zoo-project.org/trac/chrome/site/img/cumtb-logo.png

Become a knowledge partner

Related links

http://zoo-project.org/img/ogclogo.png http://zoo-project.org/img/osgeologo.png