1

我有一个私人要点,我想将它嵌入到我由 github 托管的 jekyll 站点中。但是每当我使用以下方法嵌入它时:

{% gist 931c1c8d465a04042403 %}

它会自动更改为:

<script src='https://gist.github.com/931.js?file=c1c8d465a04042403'> </script>

这不会产生任何结果。

我已经用公共要点尝试过,例如:

{% gist 5555251 %}

它变为:

<script src='https://gist.github.com/5555251.js'> </script>

产生结果。我试过使用:

<script src='https://gist.github.com/467f46c5cde7b2422ffe.js'> </script>

直接在我的文件中,结果可以在 localhost 中看到,但 github 仍然没有显示任何结果。

请帮忙。

4

1 回答 1

-1

使用脚本标签解决了我的问题。问题出在我的浏览器离线数据上。之后,从浏览器存储中清除所有内容,gist 也会出现在 github 中。我仍然很困惑为什么

{% gist 931c1c8d465a04042403 %}

被改为

<script src='https://gist.github.com/931.js?file=c1c8d465a04042403'> </script>

什么也没有产生。

于 2013-07-29T09:55:17.207 回答