Changes between Version 9 and Version 10 of WikiRestructuredText


Ignore:
Timestamp:
Sep 10, 2020, 8:03:01 PM (4 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiRestructuredText

    v9 v10  
    99 "reStructuredText is an easy-to-read, what-you-see-is-what-you-get plaintext markup syntax and parser system. It is useful for in-line program documentation (such as Python docstrings), for quickly creating simple web pages, and for standalone documents. reStructuredText is designed for extensibility for specific application domains."
    1010
    11 If you want a file from your Subversion repository to be displayed as reStructuredText in the Trac source browser, set `text/x-rst` as the value for the Subversion property `svn:mime-type`, or add the extension `rst` to the filename. See [trac:source:branches/1.2-stable/INSTALL.rst this example].
     11If you want a file from your Subversion repository to be displayed as reStructuredText in the Trac source browser, set `text/x-rst` as the value for the Subversion property `svn:mime-type`, or add the extension `rst` to the filename. See [trac:source:branches/1.4-stable/INSTALL.rst this example].
    1212
    1313The examples will only be rendered as reStructuredText if docutils is installed. If Pygments is installed but docutils is not installed, the examples will be syntax-highlighted rather than rendered as reStructuredText.
     
    2424== Using RST in Trac
    2525
    26 To specify that a block of text should be parsed using RST, use the ''rst'' processor. 
     26To specify that a block of text should be parsed using RST, use the ''rst'' processor.
    2727
    2828=== TracLinks in reStructuredText
     
    6666   }}}
    6767
    68  For a complete example of all uses of the `:trac:` role, see WikiRestructuredTextLinks. 
     68 For a complete example of all uses of the `:trac:` role, see WikiRestructuredTextLinks.
    6969
    7070=== Syntax highlighting in reStructuredText
     
    8383         def TestFunction(self):
    8484             pass
    85  
     85
    8686  }}}
    8787  }}}