编写提示
- 自动将网址与电子邮件地址转变为链接。
允许HTML标签:<a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
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://www.hongshih.com">洪詩世界</a>洪詩世界 强调 <em>强调</em>强调 强调 <strong>强调</strong>强调 引用 <cite>引用</cite>引用 编码化文本,用于显示程序源代码 <code>编码化</code>编码化无序列表 - 使用 <li> 开始每个项目 <ul> <li>第一项</li> <li>第二项</li> </ul>- 第一项
- 第二项
顺序列表- 使用 <li> 来开始每个项目 <ol> <li>第一项</li> <li>第二项</li> </ol>- 第一项
- 第二项
定义列表类似于其他 HTML列表。<dl> 开始定义列表,<dt> 开始定义列表项,<dd> 则开始列表描述。 <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 & for an ampersand & character. For a full list of entities see HTML's entities page. Some of the available characters include:
字符说明 您输入 您得到 与标记(&) && 大于号 >> 小于号 << 双引号 "" - 行和段被自动识别。<br /> 分行、<p> 段落开始以及 </p> 段落结束标记会被自动插入。如果段落没有被识别出来,只要加入一对空行。


