Changes between Version 3 and Version 4 of WikiRestructuredText
- Timestamp:
- May 19, 2008, 10:20:23 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiRestructuredText
v3 v4 86 86 === Wiki Macros in reStructuredText === 87 87 88 For doing [ TracWikiMacros Wiki Macros] in ReST you use the same directive as for syntax highlighting i.e88 For doing [WikiMacros Wiki Macros] in ReST you use the same directive as for syntax highlighting i.e 89 89 code-block. To work you must use a version of trac that has #801 applied. 90 90 … … 95 95 #!rst 96 96 97 .. code-block:: HelloWorld 98 99 Something I wanted to say 97 .. code-block:: RecentChanges 100 98 99 Trac,3 101 100 102 101 }}} … … 105 104 Will result in the below: 106 105 107 [[HelloWorld(Something I wanted to say)]]106 [[RecentChanges(Trac,3)]] 108 107 109 Or a more concise Wiki Macro like syntax is also available:108 Or a more concise Wiki Macro like syntax is also available: 110 109 111 110 {{{ … … 113 112 #!rst 114 113 115 :code-block:` HelloWorld:Something I wanted to say`114 :code-block:`RecentChanges:Trac,3` 116 115 }}} 117 116 }}}