我最近发现了这个问题,其中在放置嵌入 URL 后没有加载要点,例如
<script src="https://gist.github.com/dishabhatt123/43e98122304000687293b4c3ef3dc474.js"></script>
直接进入我博客的 HTML 视图。这是在烧烤之后终于帮助我的东西。
基本上浏览器不支持随机包含的脚本,因此使用 rawgist。将以下脚本放在页面底部的顶部。
<script src="https://rawgit.com/moski/gist-Blogger/master/public/gistLoader.js" type="text/javascript"></script>
然后,添加 div 如下:
<div class="gistLoad" data-id="43e98122304000687293b4c3ef3dc474" id="gist-43e98122304000687293b4c3ef3dc474">Loading or something, this is just text to display while the browser pulls the gist....</div>
在这里,在上面的 div 中,data-id =" whereyourgistidis " 和 id="gist - whereyourgistidis "
在上面的嵌入 url 示例中,我的 gist Id 是 '43e98122304000687293b4c3ef3dc474'。您可以将其替换为嵌入 url 中的 gist id。
请注意:您不会在“撰写视图”中看到要点。但是当你预览你的博客时,你可以看到它!