Edgewall Software

Changes between Version 9 and Version 10 of WikiFormatting


Ignore:
Timestamp:
Apr 30, 2004, 12:58:25 AM (20 years ago)
Author:
daniel
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WikiFormatting

    v9 v10  
    153153Trac 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.
    154154
    155 Example:
     155'''Example 1:'''
    156156{{{
    157157#!html
     
    167167}}}
    168168
     169'''Example 2:'''
     170{{{
     171#!html
     172<pre class="wiki">{{{
     173#!python
     174class Test:
     175    def __init__(self):
     176        print "Hello World"
     177if __name__ == '__main__':
     178   Test()
     179}}}</pre>
     180}}}
     181Display:
     182{{{
     183#!python
     184class Test:
     185    def __init__(self):
     186        print "Hello World"
     187if __name__ == '__main__':
     188   Test()
     189}}}
    169190== Miscellaneous ==
    170191
     
    180201
    181202----
    182 See also: TracLinks, TracGuide, WikiMacros, WikiProcessors
     203See also: TracLinks, TracGuide, WikiMacros, WikiProcessors, TracSyntaxColoring.