Changes between Version 2 and Version 3 of WikiFormatting


Ignore:
Timestamp:
Sep 19, 2015, 4:39:59 PM (9 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiFormatting

    v2 v3  
    1 = Wiki 文法 = #WikiFormatting
     1= WikiFormatting =
    22[[TracGuideToc]]
    33
    4 Wiki マークアップは Trac のコアとなる機能です。他のパーツと緊密に統合することによって、 Trac をフレキシブルかつ強力にしています。
    5 
    6 Trac はビルトインの小規模だけれども強力な wiki のレンダリングエンジンを搭載しています。この wiki エンジンは他の有名な wiki のコマンドのサブセット
    7 特に、 [http://moinmo.in/ MoinMoin] や [trac:WikiCreole] を拡張して実装しています。
    8 
    9 
    10 このページでは、 WikiFormatting が使用できるところではどこでも使用できる wiki のマークアップについて掘り下げた説明をします。
    11 
    12 以下に記述する ''チートシート'' に最も一般的なシンタックスのちょっとした概要を載せます。 ''カテゴリ'' カラムの中にあるそれぞれのリンクをたどってこのページの下の方にある詳細な説明を見ることができます。
    13 
    14 いくつかの他の wiki ページにも Trac の wiki のマークアップについて詳細な特徴について、より掘り下げて書かれています:
    15  - TracLinks はいかなる Trac のリソースまたはその一部を正確に参照する方法についてカバーしています。
    16  - WikiPageNames wiki ページの命名規則、 CamelCase かそれ以外かについて書かれています。
    17  - WikiMacros には動的にコンテンツを生成するためのマクロの一覧がリストされています。
    18  - WikiProcessors と WikiHtml には wiki テキストの一部を特別な方法で処理する方法についての詳細が書かれています。
    19 
    20 
    21 == チートシート == #Cheatsheet
    22 
    23 ||= '''カテゴリ''' =||= '''Wiki マークアップ''' =||= '''表示''' =||
     4Wiki markup is a core feature in Trac, tightly integrating all the other parts of Trac into a flexible and powerful whole.
     5
     6Trac has a built in small and powerful wiki rendering engine. This wiki engine implements an ever growing subset of the commands from other popular Wikis,
     7especially [http://moinmo.in/ MoinMoin] and [trac:WikiCreole].
     8
     9
     10This page will give you an in-depth explanation of the wiki markup available anywhere WikiFormatting is allowed.
     11
     12The ''Cheat sheet'' below gives you a quick overview for the most common syntax, each link in the ''Category'' column will lead you to the more detailed explanation later in this page.
     13
     14A few other wiki pages present the advanced features of the Trac wiki markup in more depth:
     15 - TracLinks covers all the possible ways to refer precisely to any Trac resource or parts thereof,
     16 - WikiPageNames talks about the various names a wiki page can take, CamelCase or not
     17 - WikiMacros lists the macros available for generating dynamic content,
     18 - WikiProcessors and WikiHtml details how parts of the wiki text can be processed in special ways
     19
     20
     21== Cheat sheet ==
     22
     23||= '''Category''' =||= '''Wiki Markup''' =||= '''Display''' =||
    2424|-----------------------------------------------------------
    2525{{{#!th rowspan=3
    26 [#FontStyles フォント書式]
    27 }}}
    28 || `'''太字'''`, `''斜体''`, `'''''Wikipedia 書式'''''` || \
    29 || '''太字''', ''斜体'', '''''Wikipedia 書式''''' ||
    30 || {{{`等幅 , ''nowiki''`}}} || \
    31 || `等幅 , nowiki` ||
    32 || `**太字**`, `//斜体//`, `**//!WikiCreole 書式//**` || \
    33 || **太字**, //斜体//, **//!WikiCreole 書式//** ||
    34 |-----------------------------------------------------------
    35 ||= [#Headings 見出し] =||\
     26[#FontStyles Font Styles]
     27}}}
     28|| `'''bold'''`, `''italic''`, `'''''Wikipedia style'''''` || \
     29|| '''bold''', ''italic'', '''''Wikipedia style''''' ||
     30|| {{{`monospaced (''other markup ignored'')`}}} || \
     31|| `monospaced (''other markup ignored'')` ||
     32|| `**bold**`, `//italic//`, `**//!WikiCreole style//**` || \
     33|| **bold**, //italic//, **//!WikiCreole style//** ||
     34|-----------------------------------------------------------
     35||= [#Headings Headings] =||\
    3636{{{#!td
    3737 {{{
    38  == 見出し 2 ==
    39  === 見出し 3 ^([#hn 注])^
     38 == Level 2 ==
     39 === Level 3 ^([#hn note])^
    4040 }}}
    4141}}}
    4242{{{#!td style="padding-left: 2em"
    43 == 見出し 2
    44 === 見出し 3 ^([#hn 注])^
    45 }}}
    46 |-----------------------------------------------------------
    47 ||= [#Paragraphs 改行]  =||\
    48 {{{#!td
    49  {{{
    50  複数行の
    51  第一段落
    52 
    53  第二段落
    54  }}}
    55 }}}
    56 {{{#!td
    57 複数行の
    58 第一段落
    59 
    60 第二段落
    61 }}}
    62 |-----------------------------------------------------------
    63 ||= [#Lists リスト] =||\
    64 {{{#!td
    65  {{{
    66  * 複数段落の
    67    番号なしリスト
    68    1. ネストしたリスト
    69      a. 異なる番号付け
    70         書式
    71  }}}
    72 }}}
    73 {{{#!td
    74 * 複数段落の
    75   番号なしリスト
    76   1. ネストしたリスト
    77     a. 異なる番号付け
    78        書式
     43== Level 2 ==
     44=== Level 3 ^([#hn note])^
     45}}}
     46|-----------------------------------------------------------
     47||= [#Paragraphs Paragraphs]  =||\
     48{{{#!td
     49 {{{
     50 First paragraph
     51 on multiple lines.
     52
     53 Second paragraph.
     54 }}}
     55}}}
     56{{{#!td
     57First paragraph
     58on multiple lines.
     59
     60Second paragraph.
     61}}}
     62|-----------------------------------------------------------
     63||= [#Lists Lists] =||\
     64{{{#!td
     65 {{{
     66 * bullets list
     67   on multiple lines
     68   1. nested list
     69     a. different numbering
     70        styles
     71 }}}
     72}}}
     73{{{#!td
     74* bullets list
     75  on multiple lines
     76  1. nested list
     77    a. different numbering
     78       styles
    7979}}}
    8080|-----------------------------------------------------------
    8181{{{#!th
    82 [#DefinitionLists 用語定義リスト]
    83 }}}
    84 {{{#!td
    85  {{{
    86   用語:: 複数段落にわたる
    87          用語の定義
    88  }}}
    89 }}}
    90 {{{#!td
    91  用語:: 複数段落にわたる
    92         用語の定義
    93 }}}
    94 |-----------------------------------------------------------
    95 ||= [#PreformattedText 整形済みテキスト] =||\
    96 {{{#!td
    97  {{{
    98  {{{
    99  複数行、 ''no wiki''
    100        空白文字も除去しない
    101  }}}
    102  }}}
    103 }}}
    104 {{{#!td
    105  {{{
    106  複数行、 ''no wiki''
    107        空白文字も除去しない
    108  }}}
    109 }}}
    110 |-----------------------------------------------------------
    111 ||= [#Blockquotes 引用ブロック] =||\
    112 {{{#!td
    113  {{{
    114    もし、いくつかのスペースが行の先頭にある場合、
    115    テキストは引用を表します。
    116  }}}
    117 }}}
    118 {{{#!td
    119  もし、いくつかのスペースが行の先頭にある場合、
    120  テキストは引用を表します。
    121 }}}
    122 |-----------------------------------------------------------
    123 ||= [#DiscussionCitations 引用] =||\
     82[#DefinitionLists Definition Lists]
     83}}}
     84{{{#!td
     85 {{{
     86  term:: definition on
     87         multiple lines
     88 }}}
     89}}}
     90{{{#!td
     91 term:: definition on
     92        multiple lines
     93}}}
     94|-----------------------------------------------------------
     95||= [#PreformattedText Preformatted Text] =||\
     96{{{#!td
     97 {{{
     98 {{{
     99 multiple lines, ''no wiki''
     100       white space respected
     101 }}}
     102 }}}
     103}}}
     104{{{#!td
     105 {{{
     106 multiple lines, ''no wiki''
     107       white space respected
     108 }}}
     109}}}
     110|-----------------------------------------------------------
     111||= [#Blockquotes Blockquotes] =||\
     112{{{#!td
     113 {{{
     114   if there's some leading
     115   space the text is quoted
     116 }}}
     117}}}
     118{{{#!td
     119 if there's some leading
     120 space the text is quoted
     121}}}
     122|-----------------------------------------------------------
     123||= [#DiscussionCitations Discussion Citations] =||\
    124124{{{#!td
    125125 {{{
     
    133133}}}
    134134|-----------------------------------------------------------
    135 ||= [#Tables ] =||\
    136 {{{#!td
    137  {{{
    138  ||= 表のヘッダ =|| セル ||
    139  ||||  (詳細は下記参照)  ||
    140  }}}
    141 }}}
    142 {{{#!td
    143 ||= 表のヘッダ =|| セル ||
    144 ||||  (詳細は下記参照)  ||
     135||= [#Tables Tables] =||\
     136{{{#!td
     137 {{{
     138 ||= Table Header =|| Cell ||
     139 ||||  (details below)  ||
     140 }}}
     141}}}
     142{{{#!td
     143||= Table Header =|| Cell ||
     144||||  (details below)  ||
    145145}}}
    146146|-----------------------------------------------------------
    147147{{{#!th rowspan=2
    148 [#Links リンク]
     148[#Links Links]
    149149}}}
    150150|| `http://trac.edgewall.org` ||\
     
    154154|-----------------------------------------------------------
    155155{{{#!th rowspan=5
    156 [#TracLinks Trac リンク]
     156[#TracLinks TracLinks]
    157157}}}
    158158|| `wiki:WikiFormatting`, `wiki:"WikiFormatting"` ||\
    159159|| wiki:WikiFormatting, wiki:"WikiFormatting" ||
    160 || `#1 (チケット)`, `[1] (チェンジセット)`, `{1} (レポート)` ||\
    161 || #1 (チケット), [1] (チェンジセット), {1} (レポート) ||
     160|| `#1 (ticket)`, `[1] (changeset)`, `{1} (report)` ||\
     161|| #1 (ticket), [1] (changeset), {1} (report) ||
    162162|| `ticket:1, ticket:1#comment:1` ||\
    163163|| ticket:1, ticket:1#comment:1 ||
    164 || `チケット [ticket:1]`, `[ticket:1 チケット 1]` ||\
    165 || チケット [ticket:1], [ticket:1 チケット 1] ||
    166 || `チケット [[ticket:1]]`, `[[ticket:1|チケット 1]]` ||\
    167 || チケット [[ticket:1]], [[ticket:1|チケット 1]] ||
     164|| `Ticket [ticket:1]`, `[ticket:1 ticket one]` ||\
     165|| Ticket [ticket:1], [ticket:1 ticket one] ||
     166|| `Ticket [[ticket:1]]`, `[[ticket:1|ticket one]]` ||\
     167|| Ticket [[ticket:1]], [[ticket:1|ticket one]] ||
    168168|-----------------------------------------------------------
    169169{{{#!th rowspan=2
    170 [#SettingAnchors アンカーの設定]
    171 }}}
    172 || `[=#point1 (1)] 1 つ目...` ||\
    173 || [=#point1 (1)] 1 つ目... ||
    174 || `[#point1 (1)] 参照` ||\
    175 || [#point1 (1)] 参照 ||
    176 |-----------------------------------------------------------
    177 {{{#!th rowspan=2
    178 [#EscapingLinksandWikiPageNames リンクの無効化]
    179 }}}
    180 || `!'' シングルクオテーション 2 つ` ||\
    181 || !'' シングルクオテーション 2 つ ||
     170[#SettingAnchors Setting Anchors]
     171}}}
     172|| `[=#point1 (1)] First...` ||\
     173|| [=#point1 (1)] First... ||
     174|| `see [#point1 (1)]` ||\
     175|| see [#point1 (1)] ||
     176|-----------------------------------------------------------
     177{{{#!th rowspan=3
     178[#Escaping Escaping Markup]
     179}}}
     180|| `!'' doubled quotes` ||\
     181|| !'' doubled quotes ||
    182182|| `!wiki:WikiFormatting`, `!WikiFormatting` ||\
    183183|| !wiki:WikiFormatting, !WikiFormatting ||
    184 |-----------------------------------------------------------
    185 ||= [#Images 画像] =|| `[[Image(`''link''`)]]` || [[Image(htdocs:../common/trac_logo_mini.png)]] ||
     184|| {{{`}}}`{{{-}}}`{{{`}}}` triple curly brackets` ||\
     185|| `{{{-}}}` triple curly brackets ||
     186|-----------------------------------------------------------
     187||= [#Images Images] =|| `[[Image(`''link''`)]]` || [[Image(htdocs:../common/trac_logo_mini.png)]] ||
    186188|-----------------------------------------------------------
    187189{{{#!th rowspan=2
    188 [#Macros マクロ]
    189 }}}
    190 || `[[MacroList(*)]]` ||  ''(簡単なマクロ一覧)''  ||
    191 || `[[Image?]]` ||  ''(イメージマクロのヘルプ)''  ||
    192 |-----------------------------------------------------------
    193 ||= [#Processors プロセッサ] =||\
     190[#Macros Macros]
     191}}}
     192|| `[[MacroList(*)]]` ||  ''(short list of all available macros)''  ||
     193|| `[[Image?]]` ||  ''(help for the Image macro)''  ||
     194|-----------------------------------------------------------
     195||= [#Processors Processors] =||\
    194196{{{#!td
    195197 {{{
    196198 {{{
    197199 #!div style="font-size: 80%"
    198  ソースコードのハイライト:
     200 Code highlighting:
    199201   {{{#!python
    200202   hello = lambda: "world"
     
    206208 {{{
    207209 #!div style="font-size: 80%"
    208  ソースコードのハイライト:
     210 Code highlighting:
    209211   {{{#!python
    210212   hello = lambda: "world"
     
    213215}}}
    214216|-----------------------------------------------------------
    215 ||= [#Comments コメント] =||\
     217||= [#Comments Comments] =||\
    216218{{{#!td
    217219 {{{
    218220 {{{#!comment
    219  編集している人への注: ...
     221 Note to Editors: ...
    220222 }}}
    221223 }}}
     
    223225{{{#!td style="padding-left: 2em"
    224226 {{{#!comment
    225  編集している人への注: ...
    226  }}}
    227 }}}
    228 |-----------------------------------------------------------
    229 ||= [#Miscellaneous その他] =||\
    230 {{{#!td
    231  {{{
    232  改 [[br]] 行
    233  改 \\ 行
     227 Note to Editors: ...
     228 }}}
     229}}}
     230|-----------------------------------------------------------
     231||= [#Miscellaneous Miscellaneous] =||\
     232{{{#!td
     233 {{{
     234 Line [[br]] break
     235 Line \\ break
    234236 ----
    235237 }}}
    236238}}}
    237239{{{#!td style="padding-left: 2em"
    238 改 [[br]] 行
    239 改 \\ 行
     240Line [[br]] break
     241Line \\ break
    240242----
    241243}}}
    242244
    243245
    244 == フォント書式 == #FontStyles
    245 
    246 Trac の Wiki は以下のフォント書式に対応しています:
    247 ||= Wiki マークアップ =||= 表示 =||
    248 {{{#!td
    249   {{{
    250    * '''太字''',
    251      ''' シングルクオテーションを 3 つ (!''') も
    252      頭にエクスクラメーションマーク (!) を付ければ、太字になります。''',
    253    * ''斜体''
    254    * '''''太字 + 斜体''''' そして ''斜体と
    255      ''' 斜体 + 太字 ''' ''
    256    * __下線__
    257    * {{{等幅}}} または `等幅`
    258      (ゆえに `{{{` または {{{`}}} で囲む)
    259    * ~~取り消し線~~
    260    * ^上付き文字^
    261    * ,,下付き文字,,
    262    * **これも太字**, //これは斜体//,
    263      そして **'' 太字 + 斜体 **'' //(0.12 以降)//
    264   }}}
    265 }}}
    266 {{{#!td
    267  * '''太字''',
    268    ''' シングルクオテーションを 3 つ (!''') も
    269    頭にエクスクラメーションマーク (!) を付ければ、太字になります。''',
    270  * ''斜体''
    271  * '''''太字 + 斜体''''' そして ''斜体と
    272    ''' 斜体 + 太字 ''' ''
    273  * __下線__
    274  * {{{等幅}}} または `等幅`
    275    (ゆえに `{{{` または {{{`}}} で囲む)
    276  * ~~取り消し線~~
    277  * ^上付き文字^
    278  * ,,下付き文字,,
    279  * **これも太字**, //これは斜体//,
    280    そして **'' 太字 + 斜体 **'' //(0.12 以降)//
    281 }}}
    282 
    283 Note:
    284  * `{{{...}}}`と {{{`...`}}} コマンドは表示を等角フォントにするだけではなく、内容を整形済みテキストとして扱います。つまりテキストに対して、どのような Wiki 処理も行いません。
    285  * {{{ ! }}} は wiki パーサに wiki フォーマットとして解釈しないように伝えます。なので、 ! の後ろにスペースを置くことに注意して下さい。例えば、太字で行が終わるようなときです。
    286  * すべてのフォント書式の記号は開始記号と終了記号のペアで使われなければなりません。
    287    そして、これらのペアは適切にネストされなければなりません ( 特に、斜体の `''` は
    288    `//` とペアにすることはできませんし、太字の `'''` は `**` とペアにすることはできません )
    289 
    290 
    291 == 見出し == #Headings
    292 
    293 見出しは、その行を 1 つから 6 つまでの等号記号 ("=") ではじめ、
    294 その後にスペースを 1 つおいて、見出しのテキストを記述することにより作成することができます。
    295 
    296 [=#hn] 見出しのテキストの後ろには同じ数の等号 ("=") が必要ですが、もはやこれは必須ではありません。
    297 
    298 ついに、ヘッダは 1 つの明示的な id によって選択的に追えるかもしれません。そうでなければ、暗黙ではあるけれども読み取り可能な id が生成されます。
    299 
    300 ||= Wiki マークアップ =||= 表示 =||
    301 {{{#!td
    302   {{{
    303   = 見出し1 =
    304   == 見出し2
    305   === ''これ'' について ===
    306   === 明示的な Id === #using-explicit-id-in-heading
    307   == 見出し2 #sub2
     246== Font Styles ==
     247
     248The Trac wiki supports the following font styles:
     249||= Wiki Markup =||= Display =||
     250{{{#!td
     251  {{{
     252   * '''bold''',
     253     ''' triple quotes !'''
     254     can be bold too if prefixed by ! ''',
     255   * ''italic''
     256   * '''''bold italic''''' or ''italic and
     257     ''' italic bold ''' ''
     258   * __underline__
     259   * {{{monospace}}} or `monospace`
     260     (hence `{{{` or {{{`}}} quoting)
     261   * ~~strike-through~~
     262   * ^superscript^
     263   * ,,subscript,,
     264   * **also bold**, //italic as well//,
     265     and **'' bold italic **'' //(since 0.12)//
     266  }}}
     267}}}
     268{{{#!td
     269 * '''bold''',
     270   ''' triple quotes !'''
     271   can be bold too if prefixed by ! ''',
     272 * ''italic''
     273 * '''''bold italic''''' or ''italic and
     274   ''' italic bold ''' ''
     275 * __underline__
     276 * {{{monospace}}} or `monospace`
     277   (hence `{{{` or {{{`}}} quoting)
     278 * ~~strike-through~~
     279 * ^superscript^
     280 * ,,subscript,,
     281 * **also bold**, //italic as well//,
     282   and **'' bold italic **'' //(since 0.12)//
     283}}}
     284
     285Notes:
     286 * `{{{...}}}` and {{{`...`}}} commands not only select a monospace font, but also treat their content as verbatim text, meaning that no further wiki processing is done on this text.
     287 * {{{ ! }}} tells wiki parser to not take the following characters as wiki format, so pay attention to put a space after !, e.g. when ending bold.
     288 * all the font styles marks have to be used in opening/closing pairs,
     289   and they must nest properly (in particular, an `''` italic can't be paired
     290   with a `//` one, and `'''` can't be paired with `**`)
     291
     292
     293== Headings ==
     294
     295You can create heading by starting a line with one up to six ''equal'' characters ("=")
     296followed by a single space and the headline text.
     297
     298[=#hn]
     299The headline text can be followed by the same number of "=" characters, but this is no longer mandatory.
     300
     301Finally, the heading might optionally be followed by an explicit id. If not, an implicit but nevertheless readable id will be generated.
     302
     303||= Wiki Markup =||= Display =||
     304{{{#!td
     305  {{{
     306  = Heading =
     307  == Subheading
     308  === About ''this'' ===
     309  === Explicit id === #using-explicit-id-in-heading
     310  == Subheading #sub2
    308311}}}
    309312}}}
     
    311314  {{{
    312315  #!div
    313   == 見出し2
    314   === ''これ'' について ===
    315   === 明示的な Id === #using-explicit-id-in-heading
    316   == 見出し2 #sub2
    317   }}}
    318 }}}
    319 
    320 == 改行 == #Paragraphs
    321 
    322 2 つのテキストブロックの間に 1 行以上の空行がある場合、新しい段落として改行を行います。
    323 
    324 強制的に改行だけを行いたい場合、このように書いてください:
    325 ||= Wiki マークアップ =||= 表示 =||
    326 {{{#!td
    327   {{{
    328   行 1[[BR]]行 2
    329   }}}
    330   {{{
    331   段落
    332   1
    333 
    334   段落
    335   2
    336   }}}
    337 }}}
    338 {{{#!td
    339   行 1[[BR]]行 2
    340 
    341   段落
    342   1
    343 
    344   段落
    345   2
    346 }}}
    347 
    348 == リスト == #Lists
    349 
    350 番号付きリストと番号無しリストの両方があります。
    351 
    352 例:
    353 ||= Wiki マークアップ =||= 表示 =||
     316  = Heading =
     317  == Subheading
     318  === About ''this'' ===
     319  === Explicit id === #using-explicit-id-in-heading
     320  == Subheading #sub2
     321  }}}
     322}}}
     323
     324== Paragraphs ==
     325
     326A new text paragraph is created whenever two blocks of text are separated by one or more empty lines.
     327
     328A forced line break can also be inserted, using:
     329||= Wiki Markup =||= Display =||
     330{{{#!td
     331  {{{
     332  Line 1[[BR]]Line 2
     333  }}}
     334  {{{
     335  Paragraph
     336  one
     337
     338  Paragraph
     339  two
     340  }}}
     341}}}
     342{{{#!td
     343  Line 1[[BR]]Line 2
     344
     345  Paragraph
     346  one
     347
     348  Paragraph
     349  two
     350}}}
     351
     352== Lists ==
     353
     354The wiki supports both ordered/numbered and unordered lists.
     355
     356Example:
     357||= Wiki Markup =||= Display =||
    354358{{{#!td
    355359  {{{
     
    361365     * Item 1.2
    362366   * Item 2
    363   - 各項目は行の先頭から開始することができます。
    364     そして複数行にまたがることができます。
    365     - 複数行にまたがる場合は、適切なインデントをするよう
    366     注意してください。さもないと
    367   新しい段落が開始してしまいます。
     367  - items can start at the beginning of a line
     368    and they can span multiple lines
     369    - be careful though to continue the line
     370    with the appropriate indentation, otherwise
     371  that will start a new paragraph...
    368372 
    369373   1. Item 1
     
    373377        i. Item 1.b.ii
    374378   1. Item 2
    375   番号付きのリストは明示的に番号を付けてあげることで
    376   リストを再開できます:
     379  And numbered lists can also be restarted
     380  with an explicit number:
    377381   3. Item 3
    378382  }}}
     
    386390   * Item 1.2
    387391 * Item 2
    388 - 各項目は行の先頭から開始することができます。
    389   そして複数行にまたがることができます。
    390   - 複数行にまたがる場合は、適切なインデントをするよう
    391   注意してください。さもないと
    392 新しい段落が開始してしまいます。
     392- items can start at the beginning of a line
     393  and they can span multiple lines
     394  - be careful though to continue the line
     395  with the appropriate indentation, otherwise
     396that will start a new paragraph...
    393397
    394398 1. Item 1
     
    398402      i. Item 1.b.ii
    399403 1. Item 2
    400 番号付きのリストは明示的に番号を付けてあげることでリストを再開できます:
     404And numbered lists can also be restarted with an explicit number:
    401405 3. Item 3
    402406}}}
    403407
    404408
    405 == 用語定義リスト == #DefinitionLists
    406 
    407 Wikiは用語定義リストも作成できます。
    408 
    409 ||= Wiki マークアップ =||= 表示 =||
     409== Definition Lists ==
     410
     411The wiki also supports definition lists.
     412
     413||= Wiki Markup =||= Display =||
    410414{{{#!td
    411415  {{{
    412416   llama::
    413      毛の生えた哺乳類の一種。
     417     some kind of mammal, with hair
    414418   ppython::
    415      毛がない爬虫類の一種。
    416      (typoを見つけたかい?)
     419     some kind of reptile, without hair
     420     (can you spot the typo?)
    417421  }}}
    418422}}}
    419423{{{#!td
    420424 llama::
    421    毛の生えた哺乳類の一種。
     425   some kind of mammal, with hair
    422426 ppython::
    423    毛がない爬虫類の一種。
    424    (typoを見つけたかい?)
    425 }}}
    426 
    427 定義する用語の前にスペースが一つ必要なことを忘れないで下さい。
    428 
    429 
    430 == 整形済みテキスト == #PreformattedText
    431 
    432 整形済みテキストを含むブロックは、ソースコードの一部や、ノート、例示に適しています。引用ブロックとしたいテキストの前後を、 3 つの ''ブレース (curly braces)'' で括ってください。ブレースは独立した行に置かなければいけません。
     427   some kind of reptile, without hair
     428   (can you spot the typo?)
     429}}}
     430
     431Note that you need a space in front of the defined term.
     432
     433
     434== Preformatted Text ==
     435
     436Block containing preformatted text are suitable for source code snippets, notes and examples. Use three ''curly braces'' wrapped around the text to define a block quote. The curly braces need to be on a separate line.
    433437 
    434 ||= Wiki マークアップ =||= 表示 =||
     438||= Wiki Markup =||= Display =||
    435439{{{#!td
    436440  {{{
     
    448452}}}
    449453
    450 Note: このブロックは、 [WikiProcessors Wiki プロセッサ] で処理されるべき行を示すためにも使用されます。
    451 
    452 == 引用ブロック == #Blockquotes
    453 
    454 段落を引用ブロックとしてマークするには、段落を 2 個のスペースでインデントします。
    455 
    456 ||= Wiki マークアップ =||= 表示 =||
     454Note that this kind of block is also used for selecting lines that should be processed through WikiProcessors.
     455
     456== Blockquotes ==
     457
     458In order to mark a paragraph as blockquote, indent that paragraph with two spaces.
     459
     460||= Wiki Markup =||= Display =||
    457461{{{#!td
    458462{{{
    459 段落
    460   このテキストは何かの引用です。
    461 }}}
    462 }}}
    463 {{{#!td
    464 段落
    465   このテキストは何かの引用です。
    466 }}}
    467 
    468 == 引用 == #DiscussionCitations
    469 
    470 進行中の議題のスレッド、チケットのコメントエリアなどで引用を表すために、メールライクな引用マーク (">", ">>" など) が使用できます。
    471 
    472 ||= Wiki マークアップ =||= 表示 =||
     463Paragraph
     464  This text is a quote from someone else.
     465}}}
     466}}}
     467{{{#!td
     468Paragraph
     469  This text is a quote from someone else.
     470}}}
     471
     472== Discussion Citations ==
     473
     474To delineate a citation in an ongoing discussion thread, such as the ticket comment area, e-mail-like citation marks (">", ">>", etc.) may be used. 
     475
     476||= Wiki Markup =||= Display =||
    473477{{{#!td
    474478  {{{
     
    487491
    488492
    489 == 表 == #Tables
     493== Tables ==
    490494=== Simple Tables ===
    491 簡単なテーブルはこのように記述します:
    492 ||= Wiki マークアップ =||= 表示 =||
     495Simple tables can be created like this:
     496||= Wiki Markup =||= Display =||
    493497{{{#!td
    494498  {{{
     
    502506}}}
    503507
    504 ヘッダとするセルは、等号 ('=') のペアで中身をラップすることで指定できます。
    505 下記の例のように、等号 ('=') はセルのセパレータとくっつけておかなければなりません:
    506 ||= Wiki マークアップ =||= 表示 =||
    507 {{{#!td
    508   {{{
    509   ||        ||= 安定版 =||= 最新版 =||
     508Cell headings can be specified by wrapping the content in a pair of '=' characters.
     509Note that the '=' characters have to stick to the cell separators, like this:
     510||= Wiki Markup =||= Display =||
     511{{{#!td
     512  {{{
     513  ||        ||= stable =||= latest =||
    510514  ||= 0.10 =||  0.10.5  || 0.10.6dev||
    511515  ||= 0.11 =||  0.11.6  || 0.11.7dev||
     
    513517}}}
    514518{{{#!td style="padding: 2em;"
    515 ||        ||= 安定版 =||= 最新版 =||
     519||        ||= stable =||= latest =||
    516520||= 0.10 =||  0.10.5  || 0.10.6dev||
    517521||= 0.11 =||  0.11.6  || 0.11.7dev||
    518522}}}
    519523
    520 最後に、空のセルを指定することは、隣の空ではないセルの範囲が空のセルまで広がることを意味します。例:
    521 ||= Wiki マークアップ =||= 表示 =||
     524Finally, specifying an empty cell means that the next non empty cell will span the empty cells. For example:
     525||= Wiki Markup =||= Display =||
    522526{{{#!td
    523527  {{{
     
    535539}}}
    536540
    537 もし、セルの中身がセルの左右どちらか一方の端に "くっついている" ならば、そのテキストはくっついている端に寄せて表示されるでしょう。例:
    538 ||= Wiki マークアップ =||= 表示 =||
    539 {{{#!td
    540   {{{
    541   ||=テキスト =||= 数字 =||
    542   ||左寄せ    ||        1.0||
    543   ||  中央寄せ      ||        4.5||
    544   ||      右寄せ||     4.5||
    545   || デフォルトの配置 ||   2.5||
    546   ||デフォルト||         2.5||
    547   ||  デフォルト ||      2.5||
    548   || デフォルト ||       2.5||
     541Note that if the content of a cell "sticks" to one side of the cell and only one, then the text will be aligned on that side. Example:
     542||= Wiki Markup =||= Display =||
     543{{{#!td
     544  {{{
     545  ||=Text =||= Numbers =||
     546  ||left align    ||        1.0||
     547  ||  center      ||        4.5||
     548  ||      right align||     4.5||
     549  || default alignment ||   2.5||
     550  ||default||         2.5||
     551  ||  default ||      2.5||
     552  || default ||       2.5||
    549553  }}}
    550554}}}
    551555{{{#!td style="padding: 2em;"
    552 ||=テキスト =||= 数字 =||
    553 ||左寄せ    ||        1.0||
    554 ||  中央寄せ      ||        4.5||
    555 ||      右寄せ||     4.5||
    556 || デフォルトの配置 ||   2.5||
    557 ||デフォルト||         2.5||
    558 ||  デフォルト ||      2.5||
    559 || デフォルト ||       2.5||
    560 }}}
    561 
    562 上記の例に反して、テーブルのセルにより多くのテキストが含まれている場合、複数の行にわたるマークアップを使用して行を広げられれば便利かもしれません。バックスラッシュ (`\`) がセルのセパレータの後ろの行末にあるとき、Trac は次の行に新しい行の新しいセルがあったとしても、新しい行を開始しません。
    563 
    564 ||= Wiki マークアップ =||
    565 {{{#!td
    566   {{{
    567   || 行 1 [http://trac.edgewall.org/newticket 新しいチケット] || \
    568   || 行 2 [http://trac.edgewall.org/roadmap ロードマップ] || \
    569   || 行 3 最後の行 ||
     556||=Text =||= Numbers =||
     557||left align    ||        1.0||
     558||  center      ||        4.5||
     559||      right align||     4.5||
     560|| default alignment ||   2.5||
     561||default||         2.5||
     562||  default ||      2.5||
     563|| default ||       2.5||
     564}}}
     565
     566If contrary to the example above, the cells in your table contain more text, it might be convenient to spread a table row over multiple lines of markup. The `\` character placed at the end of a line after a cell separator tells Trac to not start a new row for the cells on the next line.
     567
     568||= Wiki Markup =||
     569{{{#!td
     570  {{{
     571  || this is column 1 [http://trac.edgewall.org/newticket new ticket] || \
     572  || this is column 2 [http://trac.edgewall.org/roadmap the road ahead] || \
     573  || that's column 3 and last one ||
    570574  }}}
    571575}}}
    572576|-------------
    573 ||= 表示 =||
     577||= Display =||
    574578{{{#!td style="padding: 2em;"
    575 || 行 1 [http://trac.edgewall.org/newticket 新しいチケット] || \
    576 || 行 2 [http://trac.edgewall.org/roadmap ロードマップ] || \
    577 || 行 3 最後の行 ||
    578 }}}
    579 
    580 === 複雑なテーブル === #ComplexTables
    581 
    582 上記に記載されている表における簡単な "パイプ" 形式のマークアップによる試みがあなたのニーズに合わないとしたら、 [#Processors-example-tables テーブル用 Wiki プロセッサ] を使用して、より凝ったテーブルを作成することができます。
    583 
    584 
    585 == リンク == #Links
    586 
    587 WikiPageNames や URL は自動的にハイパーリンクされます。 !WikiPageLinks を無効化したい場合、 {{{!WikiPageLink}}} のように、エクスクラメーションマーク (!) を語頭に置きます。
    588 
    589 ||= Wiki マークアップ =||= 表示 =||
     579|| this is column 1 [http://trac.edgewall.org/newticket new ticket] || \
     580|| this is column 2 [http://trac.edgewall.org/roadmap the road ahead] || \
     581|| that's column 3 and last one ||
     582}}}
     583
     584=== Complex Tables ===
     585
     586If the possibilities offered by the simple "pipe"-based markup for tables described above are not enough for your needs, you can create more elaborated tables by using [#Processors-example-tables WikiProcessor based tables].
     587
     588
     589== Links ==
     590
     591Hyperlinks are automatically created for WikiPageNames and URLs. !WikiPageLinks can be disabled by prepending an exclamation mark "!" character, such as {{{!WikiPageLink}}}.
     592
     593||= Wiki Markup =||= Display =||
    590594{{{#!td
    591595  {{{
     
    597601}}}
    598602
    599 スクエアブラケット ('[', ']') 内にリンクの後ろにスペースとタイトルをつけることによって、よりリンクの内容をふさわしく表したタイトルをつけることができます。
    600 このタイトルが省略されたとき、リンクが外部リンクでない限りにおいて明示的なプレフィックスが捨てられるでしょう。これは、 [WikiPageNames Wiki ページ名] のコンベンションに従わない wiki ページを扱うときに役に立つでしょう。
    601 
    602 ||= Wiki マークアップ =||= 表示 =||
     603Links can be given a more descriptive title by writing the link followed by a space and a title and all this inside square brackets.
     604If the descriptive title is omitted, then the explicit prefix is discarded, unless the link is an external link. This can be useful for wiki pages not adhering to the WikiPageNames convention.
     605
     606||= Wiki Markup =||= Display =||
    603607{{{#!td
    604608  {{{
     
    616620}}}
    617621
    618 [trac:WikiCreole] の書式に従って、この種のタイトルはまた、//二重の// スクエアブラケット ('![[', ']]') 内にリンクの後ろにパイプ ('|') とタイトルを書くことによっても指定することができます。
    619 
    620 {{{#!td
    621   {{{
    622    * [[http://www.edgewall.com|Edgewall Software]]
    623    * [[wiki:TitleIndex|Title Index]]
    624      または [[TitleIndex|Title Index]]
    625    * [[wiki:TitleIndex]]
    626      ''' ![[TitleIndex]] はできません ! '''
    627    * [[ISO9000]]
    628   }}}
    629 }}}
    630 {{{#!td
     622Following the [trac:WikiCreole] trend, the descriptive title can also be specified by writing the link followed by a pipe ('|') and a title and all this inside //double// square brackets.
     623
     624{{{#!td
     625  {{{
    631626   * [[http://www.edgewall.com|Edgewall Software]]
    632627   * [[wiki:TitleIndex|Title Index]]
     
    635630     ''' but not ![[TitleIndex]]! '''
    636631   * [[ISO9000]]
    637 }}}
    638 
    639 '''Note''': [trac:WikiCreole] のリンク用の書式は
    640 Wikipedia や他の wiki で使用されていたりするので、素早くタイプでき、
    641 確実に親しみやすいです。しかし不幸なことにこの書式は、 [#Macros マクロ] の書式とかぶってしまいます。
    642 したがって、まれなケースですが、マクロ名にちなんだ wiki ページ名にリンクをはる必要があるとき
    643 ( 典型的な例では、 TitleIndex, InterTrac や InterWiki)、
    644 `[[TitleIndex]]` と書くと、ページへリンクする代わりにマクロを
    645 呼び出してしまいます。
    646 
    647 == Trac リンク == #TracLinks
    648 
    649 Wiki ページでは Trac の他のコンポーネントに直接リンクできます。チケット、レポート、チェンジセット、マイルストーン、ソースファイル、他の Wiki ページへは以下のようにリンクを記述します:
    650 
    651 ||= Wiki マークアップ =||= 表示 =||
    652 {{{#!td
    653   {{{
    654    * チケット: #1 または ticket:1
    655    * レポート: {1} または report:1
    656    * チェンジセット: r1, [1] または changeset:1
     632  }}}
     633}}}
     634{{{#!td
     635   * [[http://www.edgewall.com|Edgewall Software]]
     636   * [[wiki:TitleIndex|Title Index]]
     637     or even [[TitleIndex|Title Index]]
     638   * [[wiki:TitleIndex]]
     639     ''' but not ![[TitleIndex]]! '''
     640   * [[ISO9000]]
     641}}}
     642
     643'''Note''': the [trac:WikiCreole] style for links is quick to type and
     644certainly looks familiar as it's the one used on Wikipedia and in many
     645other wikis. Unfortunately it conflicts with the syntax for [#Macros macros].
     646So in the rare case when you need to refer to a page which is named after
     647a macro (typical examples being TitleIndex, InterTrac and InterWiki),
     648by writing `[[TitleIndex]]` you will actually call the macro instead of linking
     649to the page.
     650
     651== Trac Links ==
     652
     653Wiki pages can link directly to other parts of the Trac system. Pages can refer to tickets, reports, changesets, milestones, source files and other Wiki pages using the following notations:
     654
     655||= Wiki Markup =||= Display =||
     656{{{#!td
     657  {{{
     658   * Tickets: #1 or ticket:1
     659   * Reports: {1} or report:1
     660   * Changesets: r1, [1] or changeset:1
    657661   * ...
    658    * 他の Trac のインスタンスをターゲット、
    659      つまり InterTrac リンクを使用している場合:
    660      - チケット: #Trac1 または Trac:ticket:1
    661      - チェンジセット: [Trac1] or Trac:changeset:1
    662   }}}
    663 }}}
    664 {{{#!td
    665  * チケット: #1 または ticket:1
    666  * レポート: {1} または report:1
    667  * チェンジセット: r1, [1] または changeset:1
     662   * targeting other Trac instances,
     663     so called InterTrac links:
     664     - Tickets: #Trac1 or Trac:ticket:1
     665     - Changesets: [Trac1] or Trac:changeset:1
     666  }}}
     667}}}
     668{{{#!td
     669 * Tickets: #1 or ticket:1
     670 * Reports: {1} or report:1
     671 * Changesets: r1, [1] or changeset:1
    668672 * ...
    669  * 他の Trac のインスタンスをターゲット、
    670    つまり InterTrac リンクを使用している場合:
    671    - チケット: #Trac1 または Trac:ticket:1
    672    - チェンジセット: [Trac1] or Trac:changeset:1
    673 }}}
    674 
    675 他にもいろいろな Trac リンクがあります。 [TracLinks Trac リンク] により細かい情報とデフォルトで使用できるすべてのリンクのリソルバのリファレンスについて書かれています。
    676 
    677 
    678 == アンカーの設定 == #SettingAnchors
    679 
    680 アンカー、またはもっと正しく言うならば、 [http://www.w3.org/TR/REC-html40/struct/links.html#h-12.2.1 アンカー名] は ドキュメント内の場所をユニークに特定するために、Wiki ページ内のいたるところに明示的に追加することができます:
     673 * targeting other Trac instances,
     674   so called InterTrac links:
     675   - Tickets: #Trac1 or Trac:ticket:1
     676   - Changesets: [Trac1] or Trac:changeset:1
     677}}}
     678
     679There are many more flavors of Trac links, see TracLinks for more in-depth information and a reference for all the default link resolvers.
     680
     681
     682== Setting Anchors ==
     683
     684An anchor, or more correctly speaking, an [http://www.w3.org/TR/REC-html40/struct/links.html#h-12.2.1 anchor name] can be added explicitly at any place in the Wiki page, in order to uniquely identify a position in the document:
    681685
    682686{{{
     
    684688}}}
    685689
    686 [#Headings 上記で説明した] 明示的にヘッダ id をつけるときのフォーマットと合うようにこのシンタックスが採用されました。例:
     690This syntax was chosen to match the format for explicitly naming the header id [#Headings documented above]. For example:
    687691{{{
    688 == 長いタイトル == #title
    689 }}}
    690 
    691 そのアンカーに対応するリンクのシンタックスにも近いです:
     692== Long title == #title
     693}}}
     694
     695It's also very close to the syntax for the corresponding link to that anchor:
    692696{{{
    693697[#point1]
    694698}}}
    695699
    696 オプションとしてアンカーにラベルを設定できます:
     700Optionally, a label can be given to the anchor:
    697701{{{
    698702[[=#point1 '''Point 1''']]
    699703}}}
    700704
    701 ||= Wiki マークアップ =||= 表示 =||
     705||= Wiki Markup =||= Display =||
    702706|----------------------------------
    703707{{{#!td
    704708  {{{
    705   [#point2 ポイント 2 へジャンプする]
     709  [#point2 jump to the second point]
    706710
    707711  ...
    708712
    709   ポイント 2:  [=#point2] ここにジャンプしています
    710   }}}
    711 }}}
    712 {{{#!td
    713   [#point2 ポイント 2 へジャンプする]
     713  Point2:  [=#point2] Jump here
     714  }}}
     715}}}
     716{{{#!td
     717  [#point2 jump to the second point]
    714718
    715719  ...
    716720
    717   ポイント 2:  [=#point2] ここにジャンプしています
    718 }}}
    719 
    720 より複雑なアンカー (例: カスタマイズしたタイトルが必要なとき) については、Span マクロ (例: `[[span(id=point2, class=wikianchor, title=Point 2, ^(2)^)]]`) を使用することができます。
    721 
    722 
    723 == リンクの無効化と Wiki ページ名 == #EscapingLinksandWikiPageNames
    724 
    725 エクスクラメーションマーク (!) を語頭に付与することで、 TracLinks が出力するハイパーリンクを無効化できます。
    726 
    727 ||= Wiki マークアップ =||= 表示 =||
     721  Point2:  [=#point2] Jump here
     722}}}
     723
     724For more complex anchors (e.g. when a custom title is wanted), one can use the Span macro, e.g. `[[span(id=point2, class=wikianchor, title=Point 2, ^(2)^)]]`.
     725
     726
     727== Escaping Links, WikiPageNames and other Markup == #Escaping
     728
     729You may avoid making hyperlinks out of TracLinks by preceding an expression with a single "!" (exclamation mark).
     730
     731||= Wiki Markup =||= Display =||
    728732{{{#!td
    729733  {{{
    730734   !NoHyperLink
    731    !#42 はリンクではありません。
     735   !#42 is not a link
     736  }}}
     737  {{{
     738Various forms of escaping for list markup:
     739 `-` escaped minus sign \\
     740 ``1. escaped number  \\
     741 {{{*}}} escaped asterisk sign
    732742  }}}
    733743}}}
    734744{{{#!td
    735745 !NoHyperLink
    736  !#42 はリンクではありません。
    737 }}}
    738 
    739 == 画像 == #Images
    740 
    741 URL が `.png`, `.gif` or `.jpg` で終わっている場合、自動的にイメージへのリンクとはならずに `<img>` タグに変換されます。
    742 
    743 現在では `[[Image]]` マクロを使用しなければなりません。画像を表示する最も簡単な方法は、現在のページへの添付ファイルとして画像をアップロードし、 `[[Image(picture.gif)]]` のようにファイル名を指定してマクロを呼び出す方法です。
    744 
    745 現在のページに加えて、他のリソースを参照することも可能です。
    746  * `[[Image(wiki:WikiFormatting:picture.gif)]]` (他のページの添付ファイルを参照する)
    747  * `[[Image(ticket:1:picture.gif)]]` (チケットに添付されたファイルを参照する)
    748  * `[[Image(htdocs:picture.gif)]]` (プロジェクトの htdocs の内部にあるファイルを参照する)
    749  * `[[Image(source:/trunk/trac/htdocs/trac_logo_mini.png)]]` (リポジトリにあるファイルを参照)
    750 
    751 ||= Wiki マークアップ =||= 表示 =||
     746 !#42 is not a link
     747
     748Various forms of escaping for list markup:
     749 `-` escaped minus sign \\
     750 ``1. escaped number  \\
     751 {{{*}}} escaped asterisk sign
     752}}}
     753
     754== Images ==
     755
     756Urls ending with `.png`, `.gif` or `.jpg` are no longer automatically interpreted as image links, and converted to `<img>` tags.
     757
     758You now have to use the ![[Image]] macro. The simplest way to include an image is to upload it as attachment to the current page, and put the filename in a macro call like `[[Image(picture.gif)]]`.
     759
     760In addition to the current page, it is possible to refer to other resources:
     761 * `[[Image(wiki:WikiFormatting:picture.gif)]]` (referring to attachment on another page)
     762 * `[[Image(ticket:1:picture.gif)]]` (file attached to a ticket)
     763 * `[[Image(htdocs:picture.gif)]]` (referring to a file inside the [TracEnvironment environment] `htdocs` directory)
     764 * `[[Image(source:/trunk/trac/htdocs/trac_logo_mini.png)]]` (a file in repository)
     765
     766||= Wiki Markup =||= Display =||
    752767{{{#!td
    753768  {{{
     
    759774}}}
    760775
    761 `[[Image()]]` マクロに関するより詳しい情報は WikiMacros に記載されています。
    762 
    763 
    764 == マクロ == #Macros
    765 
    766 マクロは、動的コンテンツを Wiki ページに挿入するための ''カスタム関数'' です。
    767 
    768 ||= Wiki マークアップ =||= 表示 =||
     776See WikiMacros for further documentation on the `[[Image()]]` macro, which has several useful options (`title=`, `link=`, etc.)
     777
     778
     779== Macros ==
     780
     781Macros are ''custom functions'' to insert dynamic content in a page.
     782
     783||= Wiki Markup =||= Display =||
    769784{{{#!td
    770785  {{{
     
    776791}}}
    777792
    778 使用方法とインストールされているマクロの一覧は WikiMacros に記述されています。
    779 
    780 特定のマクロの詳細なヘルプを見るためには、マクロ名にクエスチョンマーク ("?") をつけることにより、直接見ることができます。
    781 
    782 ||= Wiki マークアップ =||= 表示 =||
     793See WikiMacros for more information, and a list of installed macros.
     794
     795The detailed help for a specific macro can also be obtained more directly by appending a "?" to the macro name.
     796
     797||= Wiki Markup =||= Display =||
    783798{{{#!td
    784799  {{{
     
    791806
    792807
    793 == プロセッサ == #Processors
    794 
    795 Trac は WikiProcessors の機能によって、 Wiki 以外のマークアップにも対応しています。例えば、プロセッサとしてページの描画に
    796 [wiki:WikiRestructuredText reStructuredText] や [wiki:WikiHtml HTML] を使用することができます。
    797 
    798 ||= Wiki マークアップ =||= 表示 =||
     808== Processors ==
     809
     810Trac supports alternative markup formats using WikiProcessors. For example, processors are used to write pages in
     811[wiki:WikiRestructuredText reStructuredText] or [wiki:WikiHtml HTML].
     812
     813||= Wiki Markup =||= Display =||
    799814|--------------------------------------------------------
    800815{{{#!td align="center" colspan=2 style="border: 0px; font-size: 90%"
     
    809824  #!html
    810825  <h1 style="text-align: right; color: blue">
    811    HTML テスト
     826   HTML Test
    812827  </h1>
    813828  }}}
     
    818833{{{
    819834#!html
    820 <h1 style="text-align: right; color: blue">HTMLテスト</h1>
     835<h1 style="text-align: right; color: blue">HTML Test</h1>
    821836}}}
    822837
     
    825840{{{#!td align="center" colspan=2 style="border: 0px; font-size: 90%"
    826841
    827    [=#Processors-example-highlight Example 2:] ソースコードのハイライト
     842   [=#Processors-example-highlight Example 2:] Code Highlighting
    828843
    829844}}}
     
    858873{{{#!td align="center" colspan=2 style="border: 0px; font-size: 90%"
    859874
    860        [=#Processors-example-tables Example 3:] 複雑なテーブル
     875       [=#Processors-example-tables Example 3:] Complex Tables
    861876
    862877}}}
     
    865880  {{{
    866881  {{{#!th rowspan=4 align=justify
    867   `#td` や `#th` プロセッサを用いることによって、
    868   表にいろいろな中身を入れ込むことができます:
     882  With the `#td` and `#th` processors,
     883  table cells can contain any content:
    869884  }}}
    870885  |----------------
    871886  {{{#!td
    872     - リスト
    873     - 埋め込みテーブル
    874     - 簡単な複数行にわたる内容
     887    - lists
     888    - embedded tables
     889    - simple multiline content
    875890  }}}
    876891  |----------------
    877892  {{{#!td
    878   プロセッサはネストして使用することが簡単にできるので、
    879   表はこのようにもできます:
     893  As processors can be easily nested,
     894  so can be tables:
    880895    {{{#!th
    881     :
     896    Example:
    882897    }}}
    883898    {{{#!td style="background: #eef"
    884     || ここは三重の入れ子になっている違いない... ||
     899    || must be at the third level now... ||
    885900    }}}
    886901  }}}
    887902  |----------------
    888903  {{{#!td
    889   複雑なマークアップではなかったときでさえ、
    890   この表のセルのフォームは複数行にわたる
    891   内容を書くときには便利でしょう。
     904  Even when you don't have complex markup,
     905  this form of table cells can be convenient
     906  to write content on multiple lines.
    892907  }}}
    893908  }}}
     
    897912
    898913  {{{#!th rowspan=4 align=justify
    899   `#td` や `#th` プロセッサを用いることによって、
    900   表にいろいろな中身を入れ込むことができます:
     914  With the `#td` and `#th` processors,
     915  table cells can contain any content:
    901916  }}}
    902917  |----------------
    903918  {{{#!td
    904     - リスト
    905     - 埋め込みテーブル
    906     - 簡単な複数行にわたる内容
     919    - lists
     920    - embedded tables
     921    - simple multiline content
    907922  }}}
    908923  |----------------
    909924  {{{#!td
    910   プロセッサはネストして使用することが簡単にできるので、
    911   表はこのようにもできます:
     925  As processors can be easily nested,
     926  so can be tables:
    912927    {{{#!th
    913     :
     928    Example:
    914929    }}}
    915930    {{{#!td style="background: #eef"
    916     || ここは三重の入れ子になっている違いない... ||
     931    || must be at the third level now... ||
    917932    }}}
    918933  }}}
    919934  |----------------
    920935  {{{#!td
    921   複雑なマークアップではなかったときでさえ、
    922   この表のセルのフォームは複数行にわたる
    923   内容を書くときには便利でしょう。
    924   }}}
    925 
    926 }}}
    927 
    928 より詳細な情報は WikiProcessors に記載されています。
    929 
    930 
    931 == コメント == #Comments
    932 
    933 コメントをプレーンテキストに追加することができます。コメントはレンダリングされず、プレーンテキスト形式でのみ表示されます。
    934 
    935 ||= Wiki マークアップ =||= 表示 =||
    936 {{{#!td
    937   {{{
    938   何も
     936  Even when you don't have complex markup,
     937  this form of table cells can be convenient
     938  to write content on multiple lines.
     939  }}}
     940
     941}}}
     942
     943See WikiProcessors for more information.
     944
     945
     946== Comments ==
     947
     948Comments can be added to the plain text. These will not be rendered and will not display in any other format than plain text.
     949
     950||= Wiki Markup =||= Display =||
     951{{{#!td
     952  {{{
     953  Nothing to
    939954  {{{
    940955  #!comment
    941   ここに編集者向けのコメントを書く
    942   }}}
    943   見えないよ ;-)
    944   }}}
    945 }}}
    946 {{{#!td
    947   何も
     956  Your comment for editors here
     957  }}}
     958  see ;-)
     959  }}}
     960}}}
     961{{{#!td
     962  Nothing to
    948963  {{{
    949964  #!comment
    950   ここに編集者向けのコメントを書く
    951   }}}
    952   見えないよ ;-)
    953 }}}
    954 
    955 == その他 == #Miscellaneous
    956 
    957 横線はページをいくつかに分けるために使用されます:
    958 
    959 ||= Wiki マークアップ =||= 表示 =||
    960 {{{#!td
    961   {{{
    962   4 つ以上のハイフン ('-') は横線
    963   (<HR>) に置き換えられます。
     965  Your comment for editors here
     966  }}}
     967  see ;-)
     968}}}
     969
     970== Miscellaneous ==
     971
     972An horizontal line can be used to separated different parts of your page:
     973
     974||= Wiki Markup =||= Display =||
     975{{{#!td
     976  {{{
     977  Four or more dashes will be replaced
     978  by an horizontal line (<HR>)
    964979  ----
    965   分かる?
    966   }}}
    967 }}}
    968 {{{#!td
    969   4 つ以上のハイフン ('-') は横線
    970   (<HR>) に置き換えられます。
     980  See?
     981  }}}
     982}}}
     983{{{#!td
     984Four or more dashes will be replaced
     985by an horizontal line (<HR>)
    971986----
    972   分かる?
     987See?
    973988}}}
    974989|----------------------------------
    975990{{{#!td
    976991  {{{
    977   "マクロ" 書式 [[br]] 改行
    978   }}}
    979 }}}
    980 {{{#!td
    981 "マクロ" 書式 [[br]] 改行
     992  "macro" style [[br]] line break
     993  }}}
     994}}}
     995{{{#!td
     996"macro" style [[br]] line break
    982997}}}
    983998|----------------------------------
    984999{{{#!td
    9851000  {{{
    986   !WikiCreole 書式 \\ 改\\行
    987   }}}
    988 }}}
    989 {{{#!td
    990 !WikiCreole 書式 \\ 改\\行
    991 }}}
     1001  !WikiCreole style \\ line\\break
     1002  }}}
     1003}}}
     1004{{{#!td
     1005!WikiCreole style \\ line\\break
     1006}}}
     1007