Changes between Version 2 and Version 3 of WikiFormatting
- Timestamp:
- 22/01/09 10:06:27 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiFormatting
v2 v3 81 81 * Item 1 82 82 * Item 1.1 83 * Item 1.1.1 84 * Item 1.1.2 85 * Item 1.1.3 86 * Item 1.2 83 87 * Item 2 84 88 … … 96 100 * Item 1 97 101 * Item 1.1 102 * Item 1.1.1 103 * Item 1.1.2 104 * Item 1.1.3 105 * Item 1.2 98 106 * Item 2 99 107 … … 225 233 * [wiki:ISO9000] 226 234 227 228 === Trac Links === 235 == Trac Links == 229 236 230 237 Wiki 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: … … 233 240 * Reports: {1} or report:1 234 241 * Changesets: r1, [1] or changeset:1 235 * Sourcecodefile: [browser:linux/xmodmap/neo_de.xmodmap]236 242 * ... 237 243 }}} … … 241 247 * Reports: {1} or report:1 242 248 * Changesets: r1, [1] or changeset:1 243 * Sourcecodefile: [browser:linux/xmodmap/neo_de.xmodmap]244 249 * ... 245 250 246 See TracLinks for more in-depth information.251 There are many more flavors of Trac links, see TracLinks for more in-depth information. 247 252 248 253 … … 266 271 Urls ending with `.png`, `.gif` or `.jpg` are no longer automatically interpreted as image links, and converted to `<img>` tags. 267 272 268 You now have to use the ![[Image]] macro (see below). 273 You 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 275 In 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 281 Example display: [[Image(htdocs:../common/trac_logo_mini.png)]] 282 283 284 See WikiMacros for further documentation on the `[[Image()]]` macro. 269 285 270 286 … … 275 291 Example: 276 292 {{{ 277 [[ Timestamp]]278 }}} 279 280 Display: 281 [[ Timestamp]]293 [[RecentChanges(Trac,3)]] 294 }}} 295 296 Display: 297 [[RecentChanges(Trac,3)]] 282 298 283 299 See WikiMacros for more information, and a list of installed macros. … … 340 356 341 357 358 == Comments == 359 360 Comments 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 368 342 369 == Miscellaneous == 343 370 … … 351 378 Display: 352 379 ---- 380 353 381 354 382
