编写提示

  • 自动将网址与电子邮件地址转变为链接。
  • 允许HTML标签:<a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <img> <div> <pre> <address> <h1> <h2> <h3> <h4> <h5> <h6>

    This site allows HTML content. While learning all of HTML may feel intimidating, learning how to use a very small number of the most basic HTML "tags" is very easy. This table provides examples for each tag that is enabled on this site.

    For more information see W3C's HTML Specifications or use your favorite search engine to find other sites that explain HTML.

    标签说明您输入您得到
    锚点(anchor)用来生成链接到其他页面的链接。<a href="http://drupal.mogensring.dk">webone</a>webone
    强调<em>强调</em>强调
    强调<strong>强调</strong>强调
    引用<cite>引用</cite>引用
    编码化文本,用于显示程序源代码<code>编码化</code>编码化
    无序列表 - 使用 <li> 开始每个项目<ul> <li>第一项</li> <li>第二项</li> </ul>
    • 第一项
    • 第二项
    顺序列表- 使用 <li> 来开始每个项目<ol> <li>第一项</li> <li>第二项</li> </ol>
    1. 第一项
    2. 第二项
    定义列表类似于其他 HTML列表。<dl> 开始定义列表,<dt> 开始定义列表项,<dd> 则开始列表描述。<dl> <dt>第一个术语</dt> <dd>第一个定义</dd> <dt>第二个术语</dt> <dd>第二个定义</dd> </dl>
    第一个术语
    第一个定义
    第二个术语
    第二个定义
    目前没有标签 img 的说明。
    目前没有标签 div 的说明。
    预格式化的<pre>预格式化的</pre>
    预格式化的
    目前没有标签 address 的说明。
    标题<h1>标题</h1>

    标题

    标题<h2>副标题</h2>

    副标题

    标题<h3>副标题三</h3>

    副标题三

    标题<h4>副标题四</h4>

    副标题四

    标题<h5>副标题五</h5>
    副标题五
    标题<h6>副标题六</h6>
    副标题六

    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;"
  • 行和段被自动识别。<br /> 分行、<p> 段落开始以及 </p> 段落结束标记会被自动插入。如果段落没有被识别出来,只要加入一对空行。