我正在尝试使用 jekyll 重新生成我的网站,但它正在将 pre 更改为 p 并将 th/td 添加到表中。
这是 pre to p 问题的示例差异。- 表示替换为 + 行的行。markdown 中的代码没有改变。
差异
-<pre><code>-Dhttps.proxyHost=proxy -Dhttps.proxyPort=3128
-</code></pre>
+<p><code>
+-Dhttps.proxyHost=proxy -Dhttps.proxyPort=3128
+</code></p>
降价
```
RunScriptOnNode.Factory .runScript → create submit → submit
```
这是 th/td 问题的示例差异。+ 表示以前未生成的新列,并且绝对不在我的降价文件中。
差异
<table>
<thead>
<tr>
+ <th></th>
<th> Column 1 </th>
<th> Column 2 </th>
</tr>
</thead>
<tbody>
<tr>
+ <td></td>
<td> Value 1.1 </td>
<td> Value 1.2</td>
</tr>
<tr>
+ <td></td>
<td> Value 2.1 </td>
<td> Value 2.2 </td>
</tr>
...
降价
| Column 1 | Column 2 |
|------------|---------------------|
| Value 1.1 | Value 1.2
| Value 2.1 | Value 2.2
为什么 jekyll 对我生成的 HTML 文件这样做?