Changes between Version 1 and Version 2 of WikiFormatting
- Timestamp:
- 11/17/04 15:27:56 (20 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiFormatting
v1 v2 61 61 1. Item 2 62 62 63 == Preformatted text == 64 Block quotes, also know as preformatted text, is suitable for source code snippets, notes and examples. Use three ''curly braces'' wrapped around the text: 65 66 {{{ 67 {{{ 68 def HelloWorld() 69 print "Hello World" 70 }}} 71 }}} 72 73 Display: 74 {{{ 75 def HelloWorld() 76 print "Hello World" 77 }}} 78 79 == Tables == 80 81 Simple tables can be created like this: 82 {{{ 83 ||Cell 1||Cell 2||Cell 3|| 84 ||Cell 4||Cell 5||Cell 6|| 85 }}} 86 Display: 87 ||Cell 1||Cell 2||Cell 3|| 88 ||Cell 4||Cell 5||Cell 6|| 89 63 90 == Links == 64 91 65 Hyperlinks are automatically created for WikiPageNames and urls. 92 Hyperlinks are automatically created for WikiPageNames and urls. !WikiPageLinks can be disabled by 93 prepending a bang (!) character like this {{{!WikiPageLink}}}. 66 94 67 95 For example: … … 69 97 TitleIndex, http://www.edgewall.com/. 70 98 71 Links can be given a mo ve descriptive title by writing the link followed by99 Links can be given a more descriptive title by writing the link followed by 72 100 a space and a title and all this inside two square brackets. Like this: 73 101 {{{ 74 * [http://www.edgewall.com/ Edgewall Research & Development]102 * [http://www.edgewall.com/ Edgewall Software] 75 103 * [wiki:TitleIndex Title Index] 76 104 }}} 77 105 Display: 78 106 79 * [http://www.edgewall.com/ Edgewall Research & Development]107 * [http://www.edgewall.com/ Edgewall Software] 80 108 * [wiki:TitleIndex Title Index] 81 109 … … 89 117 * Report {1} 90 118 * Changeset [1] 91 * File svn:trunk/COPYING. 119 * File source:trunk/COPYING. 120 * A specific file revision: source:/trunk/COPYING#200 92 121 }}} 93 122 Display: … … 95 124 * Report {1} 96 125 * Changeset [1] 97 * File svn:trunk/COPYING. 126 * File source:trunk/COPYING. 127 * A specific file revision: source:/trunk/COPYING#200 128 129 See TracLinks for more information about intra-trac linking. 98 130 99 131 == Images == … … 109 141 http://www.edgewall.com/gfx/trac_example_image.png 110 142 111 112 == Other stuff == 143 == Macros == 144 Macros are ''custom functions'' to insert dynamic content in a page. See WikiMacros for usage. 145 146 Example: 147 {{{ 148 [[Timestamp]] 149 }}} 150 Display: 151 [[Timestamp]] 152 153 == Processors == 154 Trac supports alternative markup formats using WikiProcessors. For example, processors are used to write pages in [wiki:WikiRestructuredText reStructuredText] or [wiki:WikiHtml HTML]. See WikiProcessors for documentation. 155 156 '''Example 1:''' 157 {{{ 158 #!html 159 <pre class="wiki">{{{ 160 #!html 161 <h1 style="text-align: right; color: blue">HTML Test</h1> 162 }}}</pre> 163 }}} 164 Display: 165 {{{ 166 #!html 167 <h1 style="text-align: right; color: blue">HTML Test</h1> 168 }}} 169 170 '''Example 2:''' 171 {{{ 172 #!html 173 <pre class="wiki">{{{ 174 #!python 175 class Test: 176 def __init__(self): 177 print "Hello World" 178 if __name__ == '__main__': 179 Test() 180 }}}</pre> 181 }}} 182 Display: 183 {{{ 184 #!python 185 class Test: 186 def __init__(self): 187 print "Hello World" 188 if __name__ == '__main__': 189 Test() 190 }}} 191 == Miscellaneous == 113 192 114 193 Four or more dashes will be replaced by a horizontal line (<HR>) 115 194 195 {{{ 196 ---- 197 }}} 198 199 Display: 116 200 ---- 201 202 203 ---- 204 See also: TracLinks, TracGuide, WikiMacros, WikiProcessors, TracSyntaxColoring.