Changes between Version 2 and Version 3 of WikiFormatting

Show
Ignore:
Timestamp:
11/16/08 20:04:31 (12 months ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiFormatting

    v2 v3  
    11= WikiFormatting = 
     2[[TracGuideToc]] 
    23 
    34Wiki markup is a core feature in Trac, tightly integrating all the other parts of Trac into a flexible and powerful whole. 
     
    8081 * Item 1 
    8182   * Item 1.1 
     83      * Item 1.1.1    
     84      * Item 1.1.2 
     85      * Item 1.1.3 
     86   * Item 1.2 
    8287 * Item 2 
    8388 
     
    95100 * Item 1 
    96101   * Item 1.1 
     102      * Item 1.1.1 
     103      * Item 1.1.2 
     104      * Item 1.1.3 
     105   * Item 1.2 
    97106 * Item 2 
    98107 
     
    224233 * [wiki:ISO9000] 
    225234 
    226  
    227 === Trac Links === 
     235== Trac Links == 
    228236 
    229237Wiki 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: 
     
    241249 * ...  
    242250 
    243 See TracLinks for more in-depth information. 
     251There are many more flavors of Trac links, see TracLinks for more in-depth information. 
    244252 
    245253 
     
    263271Urls ending with `.png`, `.gif` or `.jpg` are no longer automatically interpreted as image links, and converted to `<img>` tags. 
    264272 
    265 You now have to use the ![[Image]] macro (see below). 
     273You now have to use the ![[Image]] macro. The simplest way to include an image is to upload it as attachment to the current page, and put the filename in a macro call like `[[Image(picture.gif)]]`. 
     274 
     275In addition to the current page, it is possible to refer to other resources: 
     276 * `[[Image(wiki:WikiFormatting:picture.gif)]]` (referring to attachment on another page) 
     277 * `[[Image(ticket:1:picture.gif)]]` (file attached to a ticket) 
     278 * `[[Image(htdocs:picture.gif)]]` (referring to a file inside project htdocs) 
     279 * `[[Image(source:/trunk/trac/htdocs/trac_logo_mini.png)]]` (a file in repository) 
     280 
     281Example display: [[Image(htdocs:../common/trac_logo_mini.png)]] 
     282 
     283 
     284See WikiMacros for further documentation on the `[[Image()]]` macro. 
    266285 
    267286 
     
    272291Example: 
    273292{{{ 
    274  [[Timestamp]] 
    275 }}} 
    276  
    277 Display: 
    278  [[Timestamp]] 
     293 [[RecentChanges(Trac,3)]] 
     294}}} 
     295 
     296Display: 
     297 [[RecentChanges(Trac,3)]] 
    279298 
    280299See WikiMacros for more information, and a list of installed macros. 
     
    337356 
    338357 
     358== Comments == 
     359 
     360Comments 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 
     364Your comment here 
     365}}} 
     366}}} 
     367 
     368 
    339369== Miscellaneous == 
    340370 
     
    350380 
    351381 
     382 
    352383---- 
    353 See also: TracLinks, WikiHtml, WikiMacros, WikiProcessors. 
     384See also: TracLinks, TracGuide, WikiHtml, WikiMacros, WikiProcessors, TracSyntaxColoring.