Jekyll没有解析## Tags

时间:2016-02-12 10:36:30

标签: jekyll

我有一个Jekyll网站,一切正常,只是它没有在markdown中解析<h2>标签(我也尝试过放置实际的HTML但仍然无法正常工作。例如:{{ 3}}或here。当我用本地服务器测试时,一切都可以正常工作。

/apps页面的

here

---
layout: page
title: My Apps
---

Here's a list of all my published apps, sorted by platform.

[If you need Support and would like to open a ticket, please go to the Support page.](/support)

Most applications are available in English, Italian and Polish so far.

[Click here to take a look at the Patch Notes](/apps/patchnotes)

{% for member in site.data.apps %}

{% if member.link %}

##{% if member.fontAwesome %}{% for image in member.fontAwesome %}<i class="fa fa-{{ image }}"></i> {% endfor %}{% endif %}<a href="{{ member.link }}">{{ member.name }}</a>
<br><br>
{{ member.description }}   

{% if member.bundleName %}Included in [{{ member.bundleName }}]({{bundleLink }}) bundle.{% endif %}
{% endif %}

{% endfor %}

[Source code - Source for app/patchnotes]

2 个答案:

答案 0 :(得分:2)

试试这个:

## {% if member.fontAwesome %}

我刚在##{℅

之间添加了一个空格

让我知道它是否有效,是吗?

答案 1 :(得分:1)

您的Gemfile包含一些依赖项,例如bourbontime-to-read。那些不受支持的插件/宝石(list of gh-pages supported gems/plugins)。

如果您只在您的Gemfile中留下github-pages gem并在本地构建或提供服务,则会失败。 我认为Github页面也失败但更优雅。

如果您想使用“exotics”宝石,则必须在本地生成并在github上推送生成网站。