Changes between Version 3 and Version 4 of WikiHtml


Ignore:
Timestamp:
Dec 31, 2005, 5:43:42 PM (18 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiHtml

    v3 v4  
    1 = Using HTML in Wiki Text =
     1= Wikiテキスト内でHTMLを使用する =
    22
    3 Trac supports inserting HTML into any wiki context, accomplished using the HTML [wiki:WikiProcessors WikiProcessor].
     3HTML [wiki:WikiProcessors WikiProcessor] の機能によって、 Trac では Wiki コンテキスト内での HTML 利用をサポートしています。
    44
    5 HTML support is built-in, and does not require installing any additional packages.
     5HTML サポートはビルトイン機能であり、追加パッケージのインストールを必要としません。
    66
    7 == How to Use HTML ==
    8 To inform the wiki engine that a block of text should be treated as HTML, use the ''html'' processor.
     7== HTML の使い方 ==
     8Wiki エンジンにテキストブロックが HTML として取り扱われるよう、 ''html'' プロセッサを使用するという情報を与えます。
    99
    10 This example should explain:
     10この例のような表現は:
    1111{{{
    1212#!html
    1313<pre class="wiki">{{{
    1414#!html
    15 &lt;h1 style="text-align: right; color: blue"&gt;HTML Test&lt;/h1&gt;
     15&lt;h1 style="text-align: right; color: blue"&gt;HTML テスト&lt;/h1&gt;
    1616}}}</pre>
    1717}}}
    1818
    19 Results in:
     19このように表示されます:
    2020{{{
    2121#!html
    22 <h1 style="text-align: right; color: blue">HTML Test</h1>
     22<h1 style="text-align: right; color: blue">HTML テスト</h1>
    2323}}}
    2424
    25 == More Information ==
     25== より詳しい情報は ==
    2626
    2727 * http://www.w3.org/ -- World Wide Web Consortium