html代码的使用
html代码的使用是为了满足markdown可视化编辑中没有的选项,所以如果需要添加html,则需要点击编辑器右下角的“?”,打开“Edit Markdown”编辑,在页面的左边会看到代码的编辑形式。
一:步骤编号
<ul class="stepNumber">
<li>步骤一:</li>
<li>步骤二:</li>
<li>步骤三:</li>
<li>步骤四:</li>
...
</ul>
如下:
- 步骤一:
- 步骤二:
- 步骤三:
- 步骤四:
二:表格
a.表格1
<table class="tpTable_1">
<tbody>
<tr>
<td></td>
<td></td>
</tr>
...
</tbody>
</table>
如下:
| Bold Font | An unalterable keyword.For example: show logging |
| Normal Font | A constant (several options are enumerated and only one can be selected). |
| {} | Items in braces { } are required. |
b.表格2
<table class="tpTable_2">
<thead>
<tr>
<th>Method</th>
<th>Using Port</th>
<th>Typical Applications</th>
</tr>
</thead>
<tbody>
<tr>
<td>Console</td>
<td>Console port (connected directly)</td>
<td>Hyper Terminal</td>
</tr>
...
</tbody>
</table>
如下:
| Method | Using Port | Typical Applications |
|---|---|---|
| Console | Console port (connected directly) | Hyper Terminal |