Jekyll-now:表头没有正确呈现

时间:2017-05-06 11:00:32

标签: css github markdown jekyll github-pages

我对markdown / css完全不熟悉,我正在尝试在Github Pages上设置我的博客。

我在正确显示表格标题时遇到问题。

这是我在.md文件中创建它们的方式,该文件直接来自使用Jupyter和R生成的笔记本:

<table>
<thead><tr><th></th><th scope=col>ID</th><th scope=col>City</th><th scope=col>Province</th><th scope=col>Italians</th><th scope=col>Population</th><th scope=col>Percentage</th><th scope=col>Lat</th><th scope=col>Lon</th></tr></thead>
<tbody>

这就是Jekyll现在可以看到它们的方式: enter image description here

我在这里做错了什么?

修改

这是用于呈现表头的html代码:

<p><br />City             Province         Italians   Population   % Italians   Lat     Lon&lt;/br&gt;

我不知道这是否是因为Jekyll使用的是与Github不同的降价引擎。

1 个答案:

答案 0 :(得分:1)

我今天也遇到了这个问题,最后我找到了一种使它起作用的方法。非常简单,您只需在scope=之后添加引号,如下所示:

<table>
<thead><tr><th></th>
<th scope="col">ID</th>
<th scope="col">City</th>
<th scope="col">Province</th>
<th scope="col">Italians</th>
<th scope="col">Population</th>
<th scope="col">Percentage</th>
<th scope="col">Lat</th>
<th scope="col">Lon</th></tr></thead>
<tbody>

您可以在https://juntaodong.com/BANA7038-HW1/的github页面上查看我的帖子 以及https://raw.githubusercontent.com/JuntaoDong/juntaodong.github.io/master/_posts/2019-01-23-BANA7038-HW1.md

处的相应原始降价