我有一个私人要点,我想把它嵌入我的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仍然没有显示任何结果。
请帮助。
答案 0 :(得分:0)
使用脚本标记解决了我的问题。问题在于我的浏览器离线数据。之后,从浏览器存储中清除所有内容,gist也会出现在github中。我仍然很困惑为什么
{% gist 931c1c8d465a04042403 %}
改为
<script src='https://gist.github.com/931.js?file=c1c8d465a04042403'> </script>
什么都没有产生。