| 11 | == Text Styles == |
| 12 | * '''Bold text''' |
| 13 | * ''Italic text'' |
| 14 | * __Underlined__ |
| 15 | * `Monospaced` |
| 16 | * ^Superscript^ |
| 17 | * ,,Subscript,, |
| 18 | |
| 19 | == Lists == |
| 20 | |
| 21 | === Bullet List === |
| 22 | * Item 1 |
| 23 | * Item 2 |
| 24 | * Subitem 2.1 |
| 25 | * Subitem 2.2 |
| 26 | |
| 27 | === Numbered List === |
| 28 | 1. First |
| 29 | 1. Second |
| 30 | a. Subitem A |
| 31 | b. Subitem B |
| 32 | |
| 33 | == Table == |
| 34 | |
| 35 | || '''Header 1''' || '''Header 2''' || '''Header 3''' || |
| 36 | || Cell 1.1 || Cell 1.2 || Cell 1.3 || |
| 37 | || Cell 2.1 || Cell 2.2 || Cell 2.3 || |
| 38 | |
| 39 | == Blockquote / Indented Block == |
| 40 | {{{ |
| 41 | This is an indented block. Useful for quotes or descriptions. |
| 42 | }}} |
| 43 | |
| 44 | == Code Block == |
| 45 | {{{ |
| 46 | def hello_world(): |
| 47 | print("Hello, Trac!") |
| 48 | }}} |
| 49 | |
| 50 | == Links == |
| 51 | * External link: [https://example.com Example] |
| 52 | * Internal link: [wiki:Home HomePage] |
| 53 | * Ticket link: #123 |
| 54 | * Changeset link: [changeset:456] |
| 55 | * Revision link: r789 |
| 56 | |
| 57 | == Images == |
| 58 | [[Image(logo.png)]] |
| 59 | [[Image(https://www.example.com/image.png, width=200)]] |
| 60 | |
| 61 | == Horizontal Line == |
| 62 | ---- |
| 63 | |
| 64 | == Macros == |
| 65 | [[TOC]] — Table of contents |
| 66 | [[TicketQuery(status=new|assigned,owner=me)]] — Query for open tickets |
| 67 | [[PageOutline(2)]] — Section outline |
| 68 | |
| 69 | == Checkboxes (if plugin is enabled) == |
| 70 | * [ ] Incomplete item |
| 71 | * [x] Completed item |
| 72 | |
| 73 | == Formulas (if supported) == |
| 74 | {{{ |
| 75 | {{latex: E = mc^2}} |
| 76 | }}} |
| 77 | |
| 78 | ---- |
| 79 | |
| 80 | == Contact == |
| 81 | * Author: [wiki:YourUsername] |
| 82 | * Date: YYYY-MM-DD |