HTML标签和字符实体
您可以在条目中插入HTML标签和字符实体。
请注意,并非所有的HTML标签都可以使用,可以使用的HTML标签列表请见下文。
HTML标签
以下标签可以直接使用(划线表示该标签目前与其他语法冲突,使用时实际上是由其他语法生效)。
HTML标签:<!-- ... -->
、<abbr>
、<b>
、<big>
、<blockquote>
、<br />
1)、、<caption>
<center>
、<cite>
、<dd>
、<dfn>
、、<div>
<dl>
、<dt>
、<em>
、<font>
、<h1>
、<h2>
、<h3>
、<h4>
、<h5>
、<h6>
、<hr />
2)、<i>
、<ins>
、<kbd>
、<mark>
、<marquee>
、<ol>
、<p>
、<pre>
、、<progress>
<q>
、<rb>
、<rp>
、<rt>
、<ruby>
、<s>
、<samp>
、<small>
、、<span>
<strike>
、<strong>
、<table>
、<tbody>
、<td>
、<tfoot>
、<th>
、<thead>
、<time>
、<tr>
、<tt>
、<u>
、<ul>
、<var>
和<wbr>
。
非HTML标签:<code_html>
、<del_html>
、<sub_html>
、<sup_html>
、和<WRAP>
。
<wrap>
非HTML标签与HTML标签的对应关系
非HTML标签 | 相当于HTML标签的 |
---|---|
<code_html> | <code> |
<del_html> | <del> |
<sub_html> | <sub> |
<sup_html> | <sup> |
<WRAP> | <div> |
<wrap> | <span> |
HTML字符实体
HTML字符实体可以按以下几种格式插入。
格式 | 说明 | 举例 | |
---|---|---|---|
实体名称 | &...; | ... 是字符的名称 | & → & < → < > → > |
实体编号(十进制) | &#...; | ... 是十进制数字 | & → & < → < > → > |
实体名称(十六进制) | &#x...; | ... 是十六进制数字 | & → & < → < > → > |