Changes between Version 2 and Version 3 of WikiFormatting
- Timestamp:
- Apr 16, 2016, 7:07:22 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiFormatting
v2 v3 1 = WikiFormatting = 1 = WikiFormatting 2 2 3 [[TracGuideToc]] 3 4 4 5 Wiki markup is a core feature in Trac, tightly integrating all the other parts of Trac into a flexible and powerful whole. 5 6 6 Trac 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://moinmo.in/ MoinMoin] and [trac:WikiCreole]. 8 7 Trac 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://moinmo.in/ MoinMoin] and [trac:WikiCreole]. 9 8 10 9 This page will give you an in-depth explanation of the wiki markup available anywhere WikiFormatting is allowed. 11 10 12 The ''Cheat sheet'' below gives you a quickoverview for the most common syntax, each link in the ''Category'' column will lead you to the more detailed explanation later in this page.11 The sections below provide an 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 12 14 13 A 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 aboutthe various names a wiki page can take, CamelCase or not17 - WikiMacros lists the macros available for generating dynamic content ,14 - TracLinks covers all the possible ways to refer precisely to any Trac resource or parts thereof 15 - WikiPageNames covers the various names a wiki page can take, CamelCase or not 16 - WikiMacros lists the macros available for generating dynamic content 18 17 - WikiProcessors and WikiHtml details how parts of the wiki text can be processed in special ways 19 20 21 == C heat sheet ==18 - [trac:wiki:TracDev/Proposals/AdvancedWikiOperations AdvancedWikiOperations] provides some operations in uncommon or administrative scenarios 19 20 == Common wiki markup 22 21 23 22 ||= '''Category''' =||= '''Wiki Markup''' =||= '''Display''' =|| … … 182 181 || `!wiki:WikiFormatting`, `!WikiFormatting` ||\ 183 182 || !wiki:WikiFormatting, !WikiFormatting || 184 || {{{`}}}`{{{-}}}`{{{`}}}` triple curly brackets`||\183 || [[html(<code>`{{{-}}}` triple curly brackets</code>)]] ||\ 185 184 || `{{{-}}}` triple curly brackets || 186 185 |----------------------------------------------------------- … … 243 242 }}} 244 243 245 246 == Font Styles == 244 == Font Styles 247 245 248 246 The Trac wiki supports the following font styles: … … 292 290 with a `//` one, and `'''` can't be paired with `**`) 293 291 294 295 == Headings == 296 297 You can create heading by starting a line with one up to six ''equal'' characters ("=") 298 followed by a single space and the headline text. 292 == Headings 293 294 You can create heading by starting a line with one up to six ''equal'' characters ("=") followed by a single space and the headline text. 299 295 300 296 [=#hn] … … 324 320 }}} 325 321 326 == Paragraphs ==322 == Paragraphs 327 323 328 324 A new text paragraph is created whenever two blocks of text are separated by one or more empty lines. … … 352 348 }}} 353 349 354 == Lists ==350 == Lists 355 351 356 352 The wiki supports both ordered/numbered and unordered lists. … … 408 404 }}} 409 405 410 411 == Definition Lists == 406 == Definition Lists 412 407 413 408 The wiki also supports definition lists. … … 433 428 Note that you need a space in front of the defined term. 434 429 435 436 == Preformatted Text == 430 == Preformatted Text 437 431 438 432 Block 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. … … 456 450 Note that this kind of block is also used for selecting lines that should be processed through WikiProcessors. 457 451 458 == Blockquotes ==452 == Blockquotes 459 453 460 454 In order to mark a paragraph as blockquote, indent that paragraph with two spaces. … … 472 466 }}} 473 467 474 == Discussion Citations ==468 == Discussion Citations 475 469 476 470 To delineate a citation in an ongoing discussion thread, such as the ticket comment area, e-mail-like citation marks (">", ">>", etc.) may be used. … … 492 486 }}} 493 487 494 495 == Tables ==496 === Simple Tables === 488 == Tables 489 === Simple Tables 490 497 491 Simple tables can be created like this: 498 492 ||= Wiki Markup =||= Display =|| … … 584 578 }}} 585 579 586 === Complex Tables ===580 === Complex Tables 587 581 588 582 If 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]. 589 583 590 591 == Links == 584 == Links 592 585 593 586 Hyperlinks are automatically created for WikiPageNames and URLs. !WikiPageLinks can be disabled by prepending an exclamation mark "!" character, such as {{{!WikiPageLink}}}. … … 643 636 }}} 644 637 645 '''Note''': the [trac:WikiCreole] style for links is quick to type and 646 certainly looks familiar as it's the one used on Wikipedia and in many 647 other wikis. Unfortunately it conflicts with the syntax for [#Macros macros]. 648 So in the rare case when you need to refer to a page which is named after 649 a macro (typical examples being TitleIndex, InterTrac and InterWiki), 650 by writing `[[TitleIndex]]` you will actually call the macro instead of linking 651 to the page. 652 653 == Trac Links == 638 '''Note''': the [trac:WikiCreole] style for links is quick to type and certainly looks familiar as it is the one used on Wikipedia and in many other wikis. Unfortunately it conflicts with the syntax for [#Macros macros]. 639 So in the rare case when you need to refer to a page which is named after a macro (typical examples being TitleIndex, InterTrac and InterWiki), by writing `[[TitleIndex]]` you will actually call the macro instead of linking to the page. 640 641 == Trac Links 654 642 655 643 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: … … 681 669 There are many more flavors of Trac links, see TracLinks for more in-depth information and a reference for all the default link resolvers. 682 670 683 684 == Setting Anchors == 671 == Setting Anchors 685 672 686 673 An anchor, or more correctly speaking, an [http://www.w3.org/TR/REC-html40/struct/links.html#h-12.2.1 anchor name] can be added explicitly at any place in the Wiki page, in order to uniquely identify a position in the document: … … 725 712 726 713 For more complex anchors (e.g. when a custom title is wanted), one can use the Span macro, e.g. `[[span(id=point2, class=wikianchor, title=Point 2, ^(2)^)]]`. 727 728 714 729 715 == Escaping Links, WikiPageNames and other Markup == #Escaping … … 754 740 }}} 755 741 756 == Images ==742 == Images 757 743 758 744 Urls ending with `.png`, `.gif` or `.jpg` are no longer automatically interpreted as image links, and converted to `<img>` tags. … … 778 764 See WikiMacros for further documentation on the `[[Image()]]` macro, which has several useful options (`title=`, `link=`, etc.) 779 765 780 781 == Macros == 766 == Macros 782 767 783 768 Macros are ''custom functions'' to insert dynamic content in a page. … … 807 792 }}} 808 793 809 810 == Processors == 794 == Processors 811 795 812 796 Trac supports alternative markup formats using WikiProcessors. For example, processors are used to write pages in … … 945 929 See WikiProcessors for more information. 946 930 947 948 == Comments == 931 == Comments 949 932 950 933 Comments can be added to the plain text. These will not be rendered and will not display in any other format than plain text. … … 970 953 }}} 971 954 972 == Miscellaneous ==955 == Miscellaneous 973 956 974 957 An horizontal line can be used to separated different parts of your page: