Changes between Version 1 and Version 2 of WikiRestructuredText


Ignore:
Timestamp:
Jun 21, 2005, 1:13:36 AM (19 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiRestructuredText

    v1 v2  
    1 = reStructuredText Support in Trac =
     1= reStructuredTextのサポート =
    22
    3 Trac supports using ''reStructuredText'' (RST) as an alternative to wiki markup in any context WikiFormatting is used.
     3TracはWikiFormatting が使われているあらゆるコンテキストの中でWikiマークアップの代わりとなるものとして''reStructuredText''の使用をサポートしています。
    44
    5 From the reStucturedText webpage:
    6  "''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. ''"
     5reStructuredTextのウェブページより:
     6 "''reStructuredTextは読みやすく、見たものを手にする、マークアップされたプレインテキストとそのパーサーシステムです。reStructuredTextはプログラムのインラインのドキュメント(例えば、Python docstrings)や簡単なウェブページをすばやく作ること、スタンドアロンのドキュメントを書くのにとても役に立ちます。reStructuredTextは特定のアプリケーションの分野のための拡張として設計されています。''"
    77
    8 === Requirements ===
    9 Note that to activate RST support in Trac, the python docutils package must be installed.
    10 If not already available on your operating system, you can download it at the [http://docutils.sourceforge.net/rst.html RST Website].
     8=== 必須条件 ===
     9TracでRSTのサポートを有効にするためには、Pythonのdocutilsパッケージがインストールされてなければなりません。
     10あなたのオペレーティングシステムでまだ使用できない場合は、[http://docutils.sourceforge.net/rst.html RST Website]からダウンロードすることができます。
    1111
    12 === More information on RST ===
     12=== さらなるRSTに関する情報 ===
    1313
    14  * reStructuredText Website -- http://docutils.sourceforge.net/rst.html
    15  * RST Quick Reference -- http://docutils.sourceforge.net/docs/rst/quickref.html
     14 * reStructuredText ウェブサイト -- http://docutils.sourceforge.net/rst.html
     15 * RST クイックリファレンス -- http://docutils.sourceforge.net/docs/rst/quickref.html
    1616
    1717----
    1818
    19 == Using RST in Trac ==
    20 To specify that a block of text should be parsed using RST, use the ''rst'' processor.
     19== RSTをTracで使用する ==
     20テキストがRSTを使用してパースされるようにするには、''rst''プロセッサを使用してください。
    2121
    22 === TracLinks in reStructuredText ===
     22=== reStructuredTextにおける TracLinks ===
    2323
    24  * Trac provides a custom RST reference-directive 'trac' to allow TracLinks from within RST text.
     24 * TracはRSTテキストの中でTracLinks を許可するための 'trac'というカスタマイズされたRSTのリファレンスディレクティブを提供しています。
    2525
    26  Example:
     26 :
    2727 {{{
    2828 {{{
     
    3434 }}}
    3535
    36  For a complete example of all uses of the ''trac''-directive, please see WikiRestructuredTextLinks.
     36 ''trac''ディレクティブのすべての使用方法の一覧は、WikiRestructuredTextLinks を見てください。
    3737
    3838
    39  * Trac allows an even easier way of creating TracLinks in RST, using the custom '':trac:'' link naming scheme.
     39 * TracはRSTにおいて、カスタマイズされた'':trac::''というリンクのための命名体系を使用することにより、簡単な方法でTracLinks を作ることを許可しています。
    4040
    41  Example:
     41 :
    4242 {{{
    4343 {{{
     
    4949 }}}
    5050
    51 === Syntax highlighting in reStructuredText ===
     51=== reStructuredTextにおけるシンタックスハイライト ===
    5252
    53 There is a directive for doing TracSyntaxColoring in ReST as well. The directive is called
    54 code-block
     53同様に、RSTにおいてTracSyntaxColoring を行なうディレクティブがあります。
     54ディレクティブはcode-blockと呼ばれます。
    5555
    56 Example
     56
    5757
    5858{{{
     
    7070}}}
    7171
    72 Will result in the below.
     72上記の例は以下のように見えます。
    7373
    7474{{{
     
    8585
    8686
    87 === Example ===
    88 The example below should be mostly self-explanatory:
     87=== ===
     88以下の例はほとんど一目瞭然です:
    8989{{{
    9090#!html
     
    120120
    121121
    122 Results in:
     122結果:
    123123{{{
    124124#!rst
     
    152152
    153153----
    154 See also: WikiRestructuredTextLinks, WikiProcessors, WikiFormatting
     154参考: WikiRestructuredTextLinks, WikiProcessors, WikiFormatting