Jekyll网站没有渲染降价

时间:2017-04-27 01:58:49

标签: markdown jekyll github-pages

我有一个问题,我的远程存储库已更新,但我的Github页面网站不会更新。 http://balassit.github.io/readings/GitNotes.md的内容已过时。我已经验证在我的Github设置中,我的网站是从master构建的。 master上的内容与我当地的分支机构保持同步。

我使用jekyll buildjekyll serve在本地运行我的网站。这会在localhost:4000上产生预期的输出。

由于kramdown格式化,我看过关于降价的帖子是jekyll页面中的问题,但这对我来说似乎不是问题。

https://github.com/balassit/balassit.github.io/tree/master

GitNotes.html YAML Block

---
layout: markdown
title: "Readings"
id: "readings"
custom_css: readings/github-markdown.css
---

github-markdown.css来自https://github.com/sindresorhus/github-markdown-css/blob/gh-pages/github-markdown.css

head.html

<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">

<link rel="stylesheet" href="{{ site.baseurl }}/css/normalize.css">
<link rel="stylesheet" href="{{ site.baseurl }}/css/main.css">

<!-- Custom CSS and JavaScript -->

{% for css_file in page.custom_css %}
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/{{ css_file }}">
{% endfor %}

{% for js_file in page.custom_js %}
<script src="{{ site.baseurl }}/{{ js_file }}"></script>
{% endfor %}

{% for js_file in page.source_js %}
<script src="{{ js_file }}"></script>
{% endfor %}

<title>{{ page.title }}</title>
</head>

markdown.html

<!DOCTYPE html>
<html>
{% include head.html %}

<body>
    <style>
    .markdown-body {
        box-sizing: border-box;
        min-width: 200px;
        max-width: 1080px;
        padding: 45px;
    }
    </style>
    {% include header.html %}

    {% include sidebar.html %}

    <main>
        <article class="markdown-body">
            <markdown>
                {{ content }}
            </markdown>
        </article>
    </main>
    {% include footer.html %}
    <script src="https://spikespaz.github.io/tagdownjs/scripts/tagdown.min.js"></script>
</body>
</html>

底部脚本用于标记,可以在http://spikespaz.com/tagdownjs/

查看

1 个答案:

答案 0 :(得分:1)

GitNotes.md没有YAML Front Matter但GitNotes.html没有。为什么两个文件具有相同的filename

将前方问题添加到GitNotes.md会将其处理为_site/GitNotes.html