導覽

撰寫提示

  • 自動將網址與電子郵件位址轉變為連結。
  • 可使用的 HTML 標籤 : <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>

    本站允許含有 HTML 標籤的內文. 雖然要學懂全部的 HTML 是令人頭疼的事, 不過要學些基本的 HTML 標籤亦非難事. 能在本站使用的標籤詳如下表 :

    對於 HTML 若想進一步的瞭解請參考 W3C 的HTML 規範 或由搜索引擎找尋相關解說.

    標籤說明您輸入您得到
    錨點(anchor),用來製作通往其他頁面的連結。<a href="http://ipaz.net">www.ipaz.net</a>www.ipaz.net
    強調<em>強調</em>強調
    粗體<strong>粗體</strong>粗體
    引用<cite>引用</cite>引用
    標示文字,用來顯示程式的原始碼。<code>編碼</code>編碼
    無序列表——使用 <li> 開始每個項目<ul> <li>第一個項目</li> <li>第二個項目</li> </ul>
    • 第一個項目
    • 第二個項目
    順序列表- 使用 <li> 來開始每個項目<ol> <li>第一個項目</li> <li>第二個項目</li> </ol>
    1. 第一個項目
    2. 第二個項目
    Definition lists are similar to other HTML lists. <dl> begins the definition list, <dt> begins the definition term and <dd> begins the definition description.<dl> <dt>第一個詞彙</dt> <dd>第一個定義</dd> <dt>第二個詞彙</dt> <dd>第二個定義</dd> </dl>
    第一個詞彙
    第一個定義
    第二個詞彙
    第二個定義

    Most unusual characters can be directly entered without any problems.

    If you do encounter problems, try using HTML character entities. A common example looks like &amp; for an ampersand & character. For a full list of entities see HTML's entities page. Some of the available characters include:

    字元說明您輸入您得到
    &amp;&
    大於&gt;>
    小於&lt;<
    引號&quot;"
  • Lines and paragraphs are automatically recognized. The <br /> line break, <p> paragraph and </p> close paragraph tags are inserted automatically. If paragraphs are not recognized simply add a couple blank lines.