是否可以将gits嵌入驻留在github存储库中的README.md文件中?
就像是:
<code id=”gist-3167145″></code>
github markdownFrancisco Luz asked 2020-08-10T21:56:02Z
4个解决方案
不,对不起,那是不可能的。 您必须在README.md中具有指向它的链接或复制其内容。
Github Flavored Markdown将向您显示可以放入README.md文件的内容。
更新:我的答案适用于通过jekyll构建的github页面。 我在markdown中使用脚本标签,然后由jekyll处理。
由于markdown支持html,因此可以简单地使用<script src=”https://gist.github.com/nisrulz/11c0d63428b108f10c83.js”></script>标记嵌入要点。
只需复制github提供的要点的嵌入网址
enter image description here
..并将其粘贴到markdown文件中。
示例:复制以下内容并粘贴到markdown文件中。
<script src=”https://gist.github.com/nisrulz/11c0d63428b108f10c83.js”></script>
..这就是你会得到的