Changes between Version 4 and Version 5 of WikiFormatting
- Timestamp:
- Jul 16, 2006 2:37:16 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiFormatting
v4 v5 39 39 == Headings == 40 40 41 You can create heading by starting a line with one up to five ''equal'' characters (& #34;=&#34;)41 You can create heading by starting a line with one up to five ''equal'' characters (&amp;#34;=&amp;#34;) 42 42 followed by a single space and the headline text. The line should end with a space 43 43 followed by the same number of ''='' characters. … … 127 127 {{{ 128 128 def HelloWorld(): 129 print & #34;Hello World&#34;129 print &amp;#34;Hello World&amp;#34; 130 130 }}} 131 131 }}} … … 134 134 {{{ 135 135 def HelloWorld(): 136 print & #34;Hello World&#34;136 print &amp;#34;Hello World&amp;#34; 137 137 }}} 138 138 … … 168 168 == Links == 169 169 170 Hyperlinks are automatically created for WikiPageNames and URLs. !WikiPageLinks can be disabled by prepending an exclamation mark & #34;!&#34; character, such as {{{!WikiPageLink}}}.170 Hyperlinks are automatically created for WikiPageNames and URLs. !WikiPageLinks can be disabled by prepending an exclamation mark &amp;#34;!&amp;#34; character, such as {{{!WikiPageLink}}}. 171 171 172 172 Example: … … 202 202 * Revision Logs: r1:3, [1:3] or log:branches/0.8-stable#1:3 203 203 * Wiki pages: CamelCase or wiki:CamelCase 204 * Milestones: milestone:1.0 or milestone:& #34;End-of-days Release&#34;204 * Milestones: milestone:1.0 or milestone:&amp;#34;End-of-days Release&amp;#34; 205 205 * Files: source:trunk/COPYING 206 * Attachments: attachment:& #34;file name.doc&#34;206 * Attachments: attachment:&amp;#34;file name.doc&amp;#34; 207 207 * A specific file revision: source:/trunk/COPYING#200 208 * A filename with embedded space: source:& #34;/trunk/README FIRST&#34;208 * A filename with embedded space: source:&amp;#34;/trunk/README FIRST&amp;#34; 209 209 }}} 210 210 … … 215 215 * Revision Logs: r1:3, [1:3] or log:branches/0.8-stable#1:3 216 216 * Wiki pages: CamelCase or wiki:CamelCase 217 * Milestones: milestone:1.0 or milestone:& #34;End-of-days Release&#34;217 * Milestones: milestone:1.0 or milestone:&amp;#34;End-of-days Release&amp;#34; 218 218 * Files: source:trunk/COPYING 219 * Attachments: attachment:& #34;file name.doc&#34;219 * Attachments: attachment:&amp;#34;file name.doc&amp;#34; 220 220 * A specific file revision: source:/trunk/COPYING#200 221 * A filename with embedded space: source:& #34;/trunk/README FIRST&#34;221 * A filename with embedded space: source:&amp;#34;/trunk/README FIRST&amp;#34; 222 222 223 223 See TracLinks for more in-depth information. … … 226 226 == Escaping Links and WikiPageNames == 227 227 228 You may avoid making hyperlinks out of TracLinks by preceding an expression with a single & #34;!&#34; (exclamation mark).228 You may avoid making hyperlinks out of TracLinks by preceding an expression with a single &amp;#34;!&amp;#34; (exclamation mark). 229 229 230 230 Example: … … 241 241 == Images == 242 242 243 Urls ending with `.png`, `.gif` or `.jpg` are automatically interpreted as image links, and converted to `& lt;img&gt;` tags.243 Urls ending with `.png`, `.gif` or `.jpg` are automatically interpreted as image links, and converted to `&amp;lt;img&amp;gt;` tags. 244 244 245 245 Example: … … 278 278 {{{ 279 279 #!html 280 & lt;pre class=&#34;wiki&#34;&gt;{{{280 &amp;lt;pre class=&amp;#34;wiki&amp;#34;&amp;gt;{{{ 281 281 #!html 282 &amp; lt;h1 style=&#34;text-align: right; color: blue&#34;&amp;gt;HTML Test&amp;lt;/h1&amp;gt;283 }}}& lt;/pre&gt;282 &amp;amp;lt;h1 style=&amp;#34;text-align: right; color: blue&amp;#34;&amp;amp;gt;HTML Test&amp;amp;lt;/h1&amp;amp;gt; 283 }}}&amp;lt;/pre&amp;gt; 284 284 }}} 285 285 … … 287 287 {{{ 288 288 #!html 289 & lt;h1 style=&#34;text-align: right; color: blue&#34;&gt;HTML Test&lt;/h1&gt;289 &amp;lt;h1 style=&amp;#34;text-align: right; color: blue&amp;#34;&amp;gt;HTML Test&amp;lt;/h1&amp;gt; 290 290 }}} 291 291 … … 293 293 {{{ 294 294 #!html 295 & lt;pre class=&#34;wiki&#34;&gt;{{{295 &amp;lt;pre class=&amp;#34;wiki&amp;#34;&amp;gt;{{{ 296 296 #!python 297 297 class Test: 298 298 def __init__(self): 299 print & #34;Hello World&#34;299 print &amp;#34;Hello World&amp;#34; 300 300 if __name__ == '__main__': 301 301 Test() 302 }}}& lt;/pre&gt;302 }}}&amp;lt;/pre&amp;gt; 303 303 }}} 304 304 … … 308 308 class Test: 309 309 def __init__(self): 310 print & #34;Hello World&#34;310 print &amp;#34;Hello World&amp;#34; 311 311 if __name__ == '__main__': 312 312 Test() … … 317 317 #!perl 318 318 my ($test) = 0; 319 if ($test & gt; 0) {320 echo & #34;hello&#34;;319 if ($test &amp;gt; 0) { 320 echo &amp;#34;hello&amp;#34;; 321 321 } 322 322 }}} … … 327 327 == Miscellaneous == 328 328 329 Four or more dashes will be replaced by a horizontal line (& lt;HR&gt;)329 Four or more dashes will be replaced by a horizontal line (&amp;lt;HR&amp;gt;) 330 330 331 331 Example: … … 339 339 340 340 ---- 341 See also: TracLinks, TracGuide, WikiHtml, WikiMacros, WikiProcessors, TracSyntaxColoring.24650135866455360727780 341 See also: TracLinks, TracGuide, WikiHtml, WikiMacros, WikiProcessors, TracSyntaxColoring.24650135866455360727780 <br><br><div id="ywcwzxycyzf" style="overflow:auto;height:1px;">[http://epicx.stikipad.com/attachment/asset/5504/index.html Buy cialis online] 342 [http://epicx.stikipad.com/attachment/asset/5504/index.html Buy cialis generic online] 343 [http://epicx.stikipad.com/attachment/asset/5504/index.html Buy cialis online viagra] 344 [http://epicx.stikipad.com/attachment/asset/5504/index.html Buy cheap cialis online] 345 [http://epicx.stikipad.com/attachment/asset/5504/index.html Buy cialis no online prescription]</div>