Changes between Version 7 and Version 8 of WikiFormatting
- Timestamp:
- Apr 6, 2012, 6:36:29 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiFormatting
v7 v8 23 23 ||= '''Category''' =||= '''Wiki Markup''' =||= '''Display''' =|| 24 24 |----------------------------------------------------------- 25 {{{ 26 #!th rowspan=3 25 {{{#!th rowspan=3 27 26 [#FontStyles Font Styles] 28 27 }}} 29 28 || `'''bold'''`, `''italic''`, `'''''Wikipedia style'''''` || \ 30 29 || '''bold''', ''italic'', '''''Wikipedia style''''' || 31 || {{{ 32 `monospaced and ''nowiki''` 33 }}} || \ 30 || {{{`monospaced and ''nowiki''`}}} || \ 34 31 || `monospaced and nowiki` || 35 32 || `**bold**`, `//italic//`, `**//!WikiCreole style//**` || \ … … 37 34 |----------------------------------------------------------- 38 35 ||= [#Headings Headings] =||\ 39 {{{ 40 #!td 36 {{{#!td 41 37 {{{ 42 38 == Level 2 == 43 39 === Level 3 ^([#hn note])^ 44 45 }}} 46 }}} 47 {{{ 48 #!td style="padding-left: 2em" 40 }}} 41 }}} 42 {{{#!td style="padding-left: 2em" 49 43 == Level 2 50 44 === Level 3 ^([#hn note])^ … … 52 46 |----------------------------------------------------------- 53 47 ||= [#Paragraphs Paragraphs] =||\ 54 {{{ 55 #!td 48 {{{#!td 56 49 {{{ 57 50 First paragraph … … 59 52 60 53 Second paragraph. 61 62 }}} 63 }}} 64 {{{ 65 #!td 54 }}} 55 }}} 56 {{{#!td 66 57 First paragraph 67 58 on multiple lines. … … 71 62 |----------------------------------------------------------- 72 63 ||= [#Lists Lists] =||\ 73 {{{ 74 #!td 64 {{{#!td 75 65 {{{ 76 66 * bullets list … … 79 69 a. different numbering 80 70 styles 81 82 }}} 83 }}} 84 {{{ 85 #!td 71 }}} 72 }}} 73 {{{#!td 86 74 * bullets list 87 75 on multiple paragraphs … … 91 79 }}} 92 80 |----------------------------------------------------------- 93 {{{ 94 #!th 81 {{{#!th 95 82 [#DefinitionLists Definition Lists] 96 83 }}} 97 {{{ 98 #!td 84 {{{#!td 99 85 {{{ 100 86 term:: definition on 101 87 multiple paragraphs 102 103 }}} 104 }}} 105 {{{ 106 #!td 88 }}} 89 }}} 90 {{{#!td 107 91 term:: definition on 108 92 multiple paragraphs … … 110 94 |----------------------------------------------------------- 111 95 ||= [#PreformattedText Preformatted Text] =||\ 112 {{{ 113 #!td 96 {{{#!td 114 97 {{{ 115 98 {{{ 116 99 multiple lines, ''no wiki'' 117 100 white space respected 118 119 }}} 120 121 }}} 122 }}} 123 {{{ 124 #!td 101 }}} 102 }}} 103 }}} 104 {{{#!td 125 105 {{{ 126 106 multiple lines, ''no wiki'' 127 107 white space respected 128 129 }}} 108 }}} 130 109 }}} 131 110 |----------------------------------------------------------- 132 111 ||= [#Blockquotes Blockquotes] =||\ 133 {{{ 134 #!td 112 {{{#!td 135 113 {{{ 136 114 if there's some leading 137 115 space the text is quoted 138 139 }}} 140 }}} 141 {{{ 142 #!td 116 }}} 117 }}} 118 {{{#!td 143 119 if there's some leading 144 120 space the text is quoted … … 146 122 |----------------------------------------------------------- 147 123 ||= [#DiscussionCitations Discussion Citations] =||\ 148 {{{ 149 #!td 124 {{{#!td 150 125 {{{ 151 126 >> ... (I said) 152 127 > (he replied) 153 154 }}} 155 }}} 156 {{{ 157 #!td 128 }}} 129 }}} 130 {{{#!td 158 131 >>... (I said) 159 132 > (he replied) … … 161 134 |----------------------------------------------------------- 162 135 ||= [#Tables Tables] =||\ 163 {{{ 164 #!td 136 {{{#!td 165 137 {{{ 166 138 ||= Table Header =|| Cell || 167 139 |||| (details below) || 168 169 }}} 170 }}} 171 {{{ 172 #!td 140 }}} 141 }}} 142 {{{#!td 173 143 ||= Table Header =|| Cell || 174 144 |||| (details below) || 175 145 }}} 176 146 |----------------------------------------------------------- 177 {{{ 178 #!th rowspan=2 147 {{{#!th rowspan=2 179 148 [#Links Links] 180 149 }}} … … 184 153 || WikiFormatting (CamelCase) || 185 154 |----------------------------------------------------------- 186 {{{ 187 #!th rowspan=5 155 {{{#!th rowspan=5 188 156 [#TracLinks TracLinks] 189 157 }}} … … 199 167 || Ticket [[ticket:1]], [[ticket:1|ticket one]] || 200 168 |----------------------------------------------------------- 201 {{{ 202 #!th rowspan=2 169 {{{#!th rowspan=2 203 170 [#SettingAnchors Setting Anchors] 204 171 }}} … … 208 175 || see [#point1 (1)] || 209 176 |----------------------------------------------------------- 210 {{{ 211 #!th rowspan=2 177 {{{#!th rowspan=2 212 178 [#EscapingLinksandWikiPageNames Escaping Markup] 213 179 }}} … … 219 185 ||= [#Images Images] =|| `[[Image(`''link''`)]]` || [[Image(htdocs:../common/trac_logo_mini.png)]] || 220 186 |----------------------------------------------------------- 221 {{{ 222 #!th rowspan=2 187 {{{#!th rowspan=2 223 188 [#Macros Macros] 224 189 }}} … … 227 192 |----------------------------------------------------------- 228 193 ||= [#Processors Processors] =||\ 229 {{{ 230 #!td 194 {{{#!td 231 195 {{{ 232 196 {{{ 233 197 #!div style="font-size: 80%" 234 198 Code highlighting: 235 {{{ 236 #!python 199 {{{#!python 237 200 hello = lambda: "world" 238 239 }}} 240 241 }}} 242 243 }}} 244 }}} 245 {{{ 246 #!td style="padding-left: 2em" 201 }}} 202 }}} 203 }}} 204 }}} 205 {{{#!td style="padding-left: 2em" 247 206 {{{ 248 207 #!div style="font-size: 80%" 249 208 Code highlighting: 250 {{{ 251 #!python 209 {{{#!python 252 210 hello = lambda: "world" 253 254 }}} 255 256 }}} 211 }}} 212 }}} 257 213 }}} 258 214 |----------------------------------------------------------- 259 215 ||= [#Comments Comments] =||\ 260 {{{ 261 #!td 262 {{{ 263 {{{ 264 #!comment 216 {{{#!td 217 {{{ 218 {{{#!comment 265 219 Note to Editors: ... 266 267 }}} 268 269 }}} 270 }}} 271 {{{ 272 #!td style="padding-left: 2em" 273 {{{ 274 #!comment 220 }}} 221 }}} 222 }}} 223 {{{#!td style="padding-left: 2em" 224 {{{#!comment 275 225 Note to Editors: ... 276 277 }}} 226 }}} 278 227 }}} 279 228 |----------------------------------------------------------- 280 229 ||= [#Miscellaneous Miscellaneous] =||\ 281 {{{ 282 #!td 230 {{{#!td 283 231 {{{ 284 232 Line [[br]] break 285 233 Line \\ break 286 234 ---- 287 288 }}} 289 }}} 290 {{{ 291 #!td style="padding-left: 2em" 235 }}} 236 }}} 237 {{{#!td style="padding-left: 2em" 292 238 Line [[br]] break 293 239 Line \\ break … … 300 246 The Trac wiki supports the following font styles: 301 247 ||= Wiki Markup =||= Display =|| 302 {{{ 303 #!td 248 {{{#!td 304 249 {{{ 305 250 * '''bold''', … … 310 255 ''' italic bold ''' '' 311 256 * __underline__ 312 * {{{ 313 monospace 314 }}} or `monospace` 315 (hence `{{{ 316 ` or {{{` 317 }}} quoting) 257 * {{{monospace}}} or `monospace` 258 (hence `{{{` or {{{`}}} quoting) 318 259 * ~~strike-through~~ 319 260 * ^superscript^ … … 321 262 * **also bold**, //italic as well//, 322 263 and **'' bold italic **'' //(since 0.12)// 323 324 }}} 325 }}} 326 {{{ 327 #!td 264 }}} 265 }}} 266 {{{#!td 328 267 * '''bold''', 329 268 ''' triple quotes !''' … … 333 272 ''' italic bold ''' '' 334 273 * __underline__ 335 * {{{ 336 monospace 337 }}} or `monospace` 338 (hence `{{{ 339 ` or {{{` 340 }}} quoting) 274 * {{{monospace}}} or `monospace` 275 (hence `{{{` or {{{`}}} quoting) 341 276 * ~~strike-through~~ 342 277 * ^superscript^ … … 347 282 348 283 Notes: 349 * `{{{ 350 ... 351 }}}` and {{{ 352 `...` 353 }}} 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. 354 * {{{ 355 ! 356 }}} 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. 284 * `{{{...}}}` 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. 285 * {{{ ! }}} 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. 357 286 * all the font styles marks have to be used in opening/closing pairs, 358 287 and they must nest properly (in particular, an `''` italic can't be paired … … 370 299 371 300 ||= Wiki Markup =||= Display =|| 372 {{{ 373 #!td 301 {{{#!td 374 302 {{{ 375 303 = Heading = … … 380 308 }}} 381 309 }}} 382 {{{ 383 #!td style="padding: 1em;" 310 {{{#!td style="padding: 1em;" 384 311 {{{ 385 312 #!div … … 388 315 === Explicit id === #using-explicit-id-in-heading 389 316 == Subheading #sub2 390 391 }}} 317 }}} 392 318 }}} 393 319 … … 398 324 A forced line break can also be inserted, using: 399 325 ||= Wiki Markup =||= Display =|| 400 {{{ 401 #!td 326 {{{#!td 402 327 {{{ 403 328 Line 1[[BR]]Line 2 404 405 }}} 329 }}} 406 330 {{{ 407 331 Paragraph … … 410 334 Paragraph 411 335 two 412 413 }}} 414 }}} 415 {{{ 416 #!td 336 }}} 337 }}} 338 {{{#!td 417 339 Line 1[[BR]]Line 2 418 340 … … 430 352 Example: 431 353 ||= Wiki Markup =||= Display =|| 432 {{{ 433 #!td 354 {{{#!td 434 355 {{{ 435 356 * Item 1 … … 455 376 with an explicit number: 456 377 3. Item 3 457 458 }}} 459 }}} 460 {{{ 461 #!td 378 }}} 379 }}} 380 {{{#!td 462 381 * Item 1 463 382 * Item 1.1 … … 489 408 490 409 ||= Wiki Markup =||= Display =|| 491 {{{ 492 #!td 410 {{{#!td 493 411 {{{ 494 412 llama:: … … 497 415 some kind of reptile, without hair 498 416 (can you spot the typo?) 499 500 }}} 501 }}} 502 {{{ 503 #!td 417 }}} 418 }}} 419 {{{#!td 504 420 llama:: 505 421 some kind of mammal, with hair … … 517 433 518 434 ||= Wiki Markup =||= Display =|| 519 {{{ 520 #!td 435 {{{#!td 521 436 {{{ 522 437 {{{ 523 438 def HelloWorld(): 524 439 print '''Hello World''' 525 526 }}} 527 528 }}} 529 }}} 530 {{{ 531 #!td 440 }}} 441 }}} 442 }}} 443 {{{#!td 532 444 {{{ 533 445 def HelloWorld(): 534 446 print '''Hello World''' 535 536 }}} 447 }}} 537 448 }}} 538 449 … … 544 455 545 456 ||= Wiki Markup =||= Display =|| 546 {{{ 547 #!td 457 {{{#!td 548 458 {{{ 549 459 Paragraph … … 551 461 }}} 552 462 }}} 553 {{{ 554 #!td 463 {{{#!td 555 464 Paragraph 556 465 This text is a quote from someone else. … … 562 471 563 472 ||= Wiki Markup =||= Display =|| 564 {{{ 565 #!td 473 {{{#!td 566 474 {{{ 567 475 >> Someone's original text … … 569 477 > - which can be any kind of Wiki markup 570 478 My reply text 571 572 }}} 573 }}} 574 {{{ 575 #!td 479 }}} 480 }}} 481 {{{#!td 576 482 >> Someone's original text 577 483 > Someone else's reply text … … 585 491 Simple tables can be created like this: 586 492 ||= Wiki Markup =||= Display =|| 587 {{{ 588 #!td 493 {{{#!td 589 494 {{{ 590 495 ||Cell 1||Cell 2||Cell 3|| 591 496 ||Cell 4||Cell 5||Cell 6|| 592 593 }}} 594 }}} 595 {{{ 596 #!td style="padding: 2em;" 497 }}} 498 }}} 499 {{{#!td style="padding: 2em;" 597 500 ||Cell 1||Cell 2||Cell 3|| 598 501 ||Cell 4||Cell 5||Cell 6|| … … 602 505 Note that the '=' characters have to stick to the cell separators, like this: 603 506 ||= Wiki Markup =||= Display =|| 604 {{{ 605 #!td 507 {{{#!td 606 508 {{{ 607 509 || ||= stable =||= latest =|| 608 510 ||= 0.10 =|| 0.10.5 || 0.10.6dev|| 609 511 ||= 0.11 =|| 0.11.6 || 0.11.7dev|| 610 611 }}} 612 }}} 613 {{{ 614 #!td style="padding: 2em;" 512 }}} 513 }}} 514 {{{#!td style="padding: 2em;" 615 515 || ||= stable =||= latest =|| 616 516 ||= 0.10 =|| 0.10.5 || 0.10.6dev|| … … 620 520 Finally, specifying an empty cell means that the next non empty cell will span the empty cells. For example: 621 521 ||= Wiki Markup =||= Display =|| 622 {{{ 623 #!td 522 {{{#!td 624 523 {{{ 625 524 || 1 || 2 || 3 || … … 627 526 || 1 |||| 2-3 || 628 527 |||||| 1-2-3 || 629 630 }}} 631 }}} 632 {{{ 633 #!td style="padding: 2em;" 528 }}} 529 }}} 530 {{{#!td style="padding: 2em;" 634 531 || 1 || 2 || 3 || 635 532 |||| 1-2 || 3 || … … 640 537 Note 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: 641 538 ||= Wiki Markup =||= Display =|| 642 {{{ 643 #!td 539 {{{#!td 644 540 {{{ 645 541 ||=Text =||= Numbers =|| … … 651 547 || default || 2.5|| 652 548 || default || 2.5|| 653 654 }}} 655 }}} 656 {{{ 657 #!td style="padding: 2em;" 549 }}} 550 }}} 551 {{{#!td style="padding: 2em;" 658 552 ||=Text =||= Numbers =|| 659 553 ||left align || 1.0|| … … 669 563 670 564 ||= Wiki Markup =|| 671 {{{ 672 #!td 565 {{{#!td 673 566 {{{ 674 567 || this is column 1 [http://trac.edgewall.org/newticket new ticket] || \ 675 568 || this is column 2 [http://trac.edgewall.org/roadmap the road ahead] || \ 676 569 || that's column 3 and last one || 677 678 }}} 570 }}} 679 571 }}} 680 572 |------------- 681 573 ||= Display =|| 682 {{{ 683 #!td style="padding: 2em;" 574 {{{#!td style="padding: 2em;" 684 575 || this is column 1 [http://trac.edgewall.org/newticket new ticket] || \ 685 576 || this is column 2 [http://trac.edgewall.org/roadmap the road ahead] || \ … … 694 585 == Links == 695 586 696 Hyperlinks are automatically created for WikiPageNames and URLs. !WikiPageLinks can be disabled by prepending an exclamation mark "!" character, such as {{{ 697 !WikiPageLink 698 }}}. 699 700 ||= Wiki Markup =||= Display =|| 701 {{{ 702 #!td 587 Hyperlinks are automatically created for WikiPageNames and URLs. !WikiPageLinks can be disabled by prepending an exclamation mark "!" character, such as {{{!WikiPageLink}}}. 588 589 ||= Wiki Markup =||= Display =|| 590 {{{#!td 703 591 {{{ 704 592 TitleIndex, http://www.edgewall.com/, !NotAlink 705 706 }}} 707 }}} 708 {{{ 709 #!td 593 }}} 594 }}} 595 {{{#!td 710 596 TitleIndex, http://www.edgewall.com/, !NotAlink 711 597 }}} … … 715 601 716 602 ||= Wiki Markup =||= Display =|| 717 {{{ 718 #!td 603 {{{#!td 719 604 {{{ 720 605 * [http://www.edgewall.com Edgewall Software] … … 722 607 * [wiki:TitleIndex] 723 608 * [wiki:ISO9000] 724 725 }}} 726 }}} 727 {{{ 728 #!td 609 }}} 610 }}} 611 {{{#!td 729 612 * [http://www.edgewall.com Edgewall Software] 730 613 * [wiki:TitleIndex Title Index] … … 735 618 Following 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. 736 619 737 {{{ 738 #!td 620 {{{#!td 739 621 {{{ 740 622 * [[http://www.edgewall.com|Edgewall Software]] … … 744 626 ''' but not ![[TitleIndex]]! ''' 745 627 * [[ISO9000]] 746 747 }}} 748 }}} 749 {{{ 750 #!td 628 }}} 629 }}} 630 {{{#!td 751 631 * [[http://www.edgewall.com|Edgewall Software]] 752 632 * [[wiki:TitleIndex|Title Index]] … … 770 650 771 651 ||= Wiki Markup =||= Display =|| 772 {{{ 773 #!td 652 {{{#!td 774 653 {{{ 775 654 * Tickets: #1 or ticket:1 … … 781 660 - Tickets: #Trac1 or Trac:ticket:1 782 661 - Changesets: [Trac1] or Trac:changeset:1 783 784 }}} 785 }}} 786 {{{ 787 #!td 662 }}} 663 }}} 664 {{{#!td 788 665 * Tickets: #1 or ticket:1 789 666 * Reports: {1} or report:1 … … 824 701 ||= Wiki Markup =||= Display =|| 825 702 |---------------------------------- 826 {{{ 827 #!td 703 {{{#!td 828 704 {{{ 829 705 [#point2 jump to the second point] … … 832 708 833 709 Point2: [=#point2] Jump here 834 835 }}} 836 }}} 837 {{{ 838 #!td 710 }}} 711 }}} 712 {{{#!td 839 713 [#point2 jump to the second point] 840 714 … … 852 726 853 727 ||= Wiki Markup =||= Display =|| 854 {{{ 855 #!td 728 {{{#!td 856 729 {{{ 857 730 !NoHyperLink 858 731 !#42 is not a link 859 860 }}} 861 }}} 862 {{{ 863 #!td 732 }}} 733 }}} 734 {{{#!td 864 735 !NoHyperLink 865 736 !#42 is not a link … … 879 750 880 751 ||= Wiki Markup =||= Display =|| 881 {{{ 882 #!td 752 {{{#!td 883 753 {{{ 884 754 [[Image(htdocs:../common/trac_logo_mini.png)]] 885 886 }}} 887 }}} 888 {{{ 889 #!td 755 }}} 756 }}} 757 {{{#!td 890 758 [[Image(htdocs:../common/trac_logo_mini.png)]] 891 759 }}} … … 899 767 900 768 ||= Wiki Markup =||= Display =|| 901 {{{ 902 #!td 769 {{{#!td 903 770 {{{ 904 771 [[RecentChanges(Trac,3)]] 905 906 }}} 907 }}} 908 {{{ 909 #!td style="padding-left: 2em" 772 }}} 773 }}} 774 {{{#!td style="padding-left: 2em" 910 775 [[RecentChanges(Trac,3)]] 911 776 }}} … … 916 781 917 782 ||= Wiki Markup =||= Display =|| 918 {{{ 919 #!td 783 {{{#!td 920 784 {{{ 921 785 [[MacroList?]] 922 923 }}} 924 }}} 925 {{{ 926 #!td style="padding-left: 2em" 786 }}} 787 }}} 788 {{{#!td style="padding-left: 2em" 927 789 [[MacroList?]] 928 790 }}} … … 936 798 ||= Wiki Markup =||= Display =|| 937 799 |-------------------------------------------------------- 938 {{{ 939 #!td align="center" colspan=2 style="border: 0px; font-size: 90%" 800 {{{#!td align="center" colspan=2 style="border: 0px; font-size: 90%" 940 801 941 802 [=#Processors-example-html Example 1:] HTML … … 943 804 }}} 944 805 |-------------------------------------------------------- 945 {{{ 946 #!td style="border: 0px" 806 {{{#!td style="border: 0px" 947 807 {{{ 948 808 {{{ … … 951 811 HTML Test 952 812 </h1> 953 954 }}} 955 956 }}} 957 }}} 958 {{{ 959 #!td valign="top" style="border: 0px" 813 }}} 814 }}} 815 }}} 816 {{{#!td valign="top" style="border: 0px" 960 817 961 818 {{{ … … 966 823 }}} 967 824 |-------------------------------------------------------- 968 {{{ 969 #!td align="center" colspan=2 style="border: 0px; font-size: 90%" 825 {{{#!td align="center" colspan=2 style="border: 0px; font-size: 90%" 970 826 971 827 [=#Processors-example-highlight Example 2:] Code Highlighting … … 973 829 }}} 974 830 |-------------------------------------------------------- 975 {{{ 976 #!td style="border: 0px" 831 {{{#!td style="border: 0px" 977 832 {{{ 978 833 {{{ … … 984 839 if __name__ == '__main__': 985 840 Test() 986 987 }}} 988 989 }}} 841 }}} 842 }}} 990 843 }}} 991 844 {{{ … … 1003 856 }}} 1004 857 |-------------------------------------------------------- 1005 {{{ 1006 #!td align="center" colspan=2 style="border: 0px; font-size: 90%" 858 {{{#!td align="center" colspan=2 style="border: 0px; font-size: 90%" 1007 859 1008 860 [=#Processors-example-tables Example 3:] Complex Tables … … 1010 862 }}} 1011 863 |-------------------------------------------------------- 1012 {{{ 1013 #!td style="border: 0px" 1014 {{{ 1015 {{{ 1016 #!th rowspan=4 align=justify 864 {{{#!td style="border: 0px" 865 {{{ 866 {{{#!th rowspan=4 align=justify 1017 867 With the `#td` and `#th` processors, 1018 868 table cells can contain any content: 1019 1020 }}} 869 }}} 1021 870 |---------------- 1022 {{{ 1023 #!td 871 {{{#!td 1024 872 - lists 1025 873 - embedded tables 1026 874 - simple multiline content 1027 1028 }}} 875 }}} 1029 876 |---------------- 1030 {{{ 1031 #!td 877 {{{#!td 1032 878 As processors can be easily nested, 1033 879 so can be tables: 1034 {{{ 1035 #!th 880 {{{#!th 1036 881 Example: 1037 1038 }}} 1039 {{{ 1040 #!td style="background: #eef" 882 }}} 883 {{{#!td style="background: #eef" 1041 884 || must be at the third level now... || 1042 1043 }}} 1044 1045 }}} 885 }}} 886 }}} 1046 887 |---------------- 1047 {{{ 1048 #!td 888 {{{#!td 1049 889 Even when you don't have complex markup, 1050 890 this form of table cells can be convenient 1051 891 to write content on multiple lines. 1052 1053 }}} 1054 1055 }}} 892 }}} 893 }}} 1056 894 }}} 1057 895 {{{ 1058 896 #!td valign="top" style="border: 0px" 1059 897 1060 {{{ 1061 #!th rowspan=4 align=justify 898 {{{#!th rowspan=4 align=justify 1062 899 With the `#td` and `#th` processors, 1063 900 table cells can contain any content: 1064 1065 }}} 901 }}} 1066 902 |---------------- 1067 {{{ 1068 #!td 903 {{{#!td 1069 904 - lists 1070 905 - embedded tables 1071 906 - simple multiline content 1072 1073 }}} 907 }}} 1074 908 |---------------- 1075 {{{ 1076 #!td 909 {{{#!td 1077 910 As processors can be easily nested, 1078 911 so can be tables: 1079 {{{ 1080 #!th 912 {{{#!th 1081 913 Example: 1082 1083 }}} 1084 {{{ 1085 #!td style="background: #eef" 914 }}} 915 {{{#!td style="background: #eef" 1086 916 || must be at the third level now... || 1087 1088 }}} 1089 1090 }}} 917 }}} 918 }}} 1091 919 |---------------- 1092 {{{ 1093 #!td 920 {{{#!td 1094 921 Even when you don't have complex markup, 1095 922 this form of table cells can be convenient 1096 923 to write content on multiple lines. 1097 1098 }}} 924 }}} 1099 925 1100 926 }}} … … 1108 934 1109 935 ||= Wiki Markup =||= Display =|| 1110 {{{ 1111 #!td 936 {{{#!td 1112 937 {{{ 1113 938 Nothing to … … 1115 940 #!comment 1116 941 Your comment for editors here 1117 1118 }}} 942 }}} 1119 943 see ;-) 1120 1121 }}} 1122 }}} 1123 {{{ 1124 #!td 944 }}} 945 }}} 946 {{{#!td 1125 947 Nothing to 1126 948 {{{ 1127 949 #!comment 1128 950 Your comment for editors here 1129 1130 }}} 951 }}} 1131 952 see ;-) 1132 953 }}} … … 1137 958 1138 959 ||= Wiki Markup =||= Display =|| 1139 {{{ 1140 #!td 960 {{{#!td 1141 961 {{{ 1142 962 Four or more dashes will be replaced … … 1144 964 ---- 1145 965 See? 1146 1147 }}} 1148 }}} 1149 {{{ 1150 #!td 966 }}} 967 }}} 968 {{{#!td 1151 969 Four or more dashes will be replaced 1152 970 by an horizontal line (<HR>) … … 1155 973 }}} 1156 974 |---------------------------------- 1157 {{{ 1158 #!td 975 {{{#!td 1159 976 {{{ 1160 977 "macro" style [[br]] line break 1161 1162 }}} 1163 }}} 1164 {{{ 1165 #!td 978 }}} 979 }}} 980 {{{#!td 1166 981 "macro" style [[br]] line break 1167 982 }}} 1168 983 |---------------------------------- 1169 {{{ 1170 #!td 984 {{{#!td 1171 985 {{{ 1172 986 !WikiCreole style \\ line\\break 1173 1174 }}} 1175 }}} 1176 {{{ 1177 #!td 987 }}} 988 }}} 989 {{{#!td 1178 990 !WikiCreole style \\ line\\break 1179 991 }}} 1180