Edgewall Software

Changes between Version 4 and Version 5 of WikiRestructuredText


Ignore:
Timestamp:
Apr 16, 2004, 10:18:36 PM (20 years ago)
Author:
daniel
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WikiRestructuredText

    v4 v5  
    66 "''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. ''"
    77
     8=== Requirements ===
     9Note that to activate RST support in Trac, the python docutils package must be installed.
     10If not already available on your operating system, you can download it at the [http://docutils.sourceforge.net/rst.html RST Website].
     11
     12=== More information on RST ===
     13
     14 * reStructuredText Website -- http://docutils.sourceforge.net/rst.html
     15 * RST Quick Reference -- http://docutils.sourceforge.net/docs/rst/quickref.html
     16
     17----
     18
    819== Using RST in Trac ==
    9 To specify that a block of text should be parsed using RST, use the ''rst'' proceessor. The example below should be self-explanatory:
     20To specify that a block of text should be parsed using RST, use the ''rst'' processor.
     21
     22=== TracLinks in reStructuredText ===
     23Trac provides a custom RST reference-directive 'trac' to allow TracLinks from within RST text.
     24
     25Example:
     26{{{
     27{{{
     28#!rst
     29This is a reference to |a ticket|
     30
     31.. |a ticket| trac:: #42
     32}}}
     33}}}
     34
     35For a complete example of all uses of the ''trac''-directive, please see WikiRestructuredTextLinks.
     36
     37=== Example ===
     38The example below should be mostly self-explanatory:
    1039{{{
    1140#!html
     
    73102
    74103----
    75 == Requirements ==
    76 Note that to activate RST support in Trac, the python docutils package must be installed.
    77 If not already available on your operating system, you can download it at the [http://docutils.sourceforge.net/rst.html RST Website].
    78 
    79 
    80 
    81 == More information on RST ==
    82 
    83  * reStructuredText Website -- http://docutils.sourceforge.net/rst.html
    84  * RST Quick Reference -- http://docutils.sourceforge.net/docs/rst/quickref.html
    85 
    86 
    87 ----
    88 See also: WikiProcessors, WikiFormatting
     104See also: WikiRestructuredTextLinks, WikiProcessors, WikiFormatting