Changes between Version 1 and Version 2 of WikiRestructuredText
- Timestamp:
- 11/18/04 18:03:00 (20 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiRestructuredText
v1 v2 1 1 = reStructuredText Support in Trac = 2 2 3 Since 0.6, Trac supports using ''reStructuredText'' (RST) as an alternative to wiki markup in any context whereWikiFormatting is used.3 Trac supports using ''reStructuredText'' (RST) as an alternative to wiki markup in any context WikiFormatting is used. 4 4 5 5 From the reStucturedText webpage: … … 21 21 22 22 === TracLinks in reStructuredText === 23 Trac provides a custom RST reference-directive 'trac' to allow TracLinks from within RST text.24 23 25 Example: 24 * Trac provides a custom RST reference-directive 'trac' to allow TracLinks from within RST text. 25 26 Example: 27 {{{ 28 {{{ 29 #!rst 30 This is a reference to |a ticket| 31 32 .. |a ticket| trac:: #42 33 }}} 34 }}} 35 36 For a complete example of all uses of the ''trac''-directive, please see WikiRestructuredTextLinks. 37 38 39 * Trac allows an even easier way of creating TracLinks in RST, using the custom '':trac:'' link naming scheme. 40 41 Example: 42 {{{ 43 {{{ 44 #!rst 45 This is a reference to ticket `#12`:trac: 46 47 To learn how to use Trac, see `TracGuide`:trac: 48 }}} 49 }}} 50 51 === Syntax highlighting in reStructuredText === 52 53 There is a directive for doing TracSyntaxColoring in ReST as well. The directive is called 54 code-block 55 56 Example 57 26 58 {{{ 27 59 {{{ 28 60 #!rst 29 This is a reference to |a ticket|30 61 31 .. |a ticket| trac:: #42 62 .. code-block:: python 63 64 class Test: 65 66 def TestFunction(self): 67 pass 68 32 69 }}} 33 70 }}} 34 71 35 For a complete example of all uses of the ''trac''-directive, please see WikiRestructuredTextLinks. 72 Will result in the below. 73 74 {{{ 75 #!rst 76 77 .. code-block:: python 78 79 class Test: 80 81 def TestFunction(self): 82 pass 83 84 }}} 85 36 86 37 87 === Example ===