jekyll将pre更改为p并将th / td添加到表中

时间:2013-08-07 16:13:02

标签: jekyll

我正在尝试使用jekyll重新生成我的网站,但它正在将pre更改为p并将th / td添加到表格。

这是pre to p问题的示例差异。 - 表示用+行替换的行。降价代码没有改变。

DIFF

-<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问题的示例差异。 +表示之前未生成的新列,并且肯定不在我的markdown文件中。

DIFF

<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文件执行此操作?

1 个答案:

答案 0 :(得分:1)

在这些情况下,最好验证降价引擎的版本和/或是否可以通过更改引擎获得所需的结果。 :)