在 GitHub 中使用自动页面生成器时保留对 index.html 的自定义更改

keep custom changes to index.html when using the automatic page generator in GitHub

我使用 GitHub 的自动页面生成器创建了一个 index.html 文件。每当我对 README.md 文件进行更改时,我都会使用自动页面生成器来更新 index.html.

我希望能够在 head 部分的 index.html 文件中添加一些自定义 code/HTML ,每次我使用自动页面生成器时,它都会坚持并说出来。有办法吗?

你需要include your README.md somewhere in your index.html using Jekyll,这就是为了这个目的。

index.html:

---
---
<html>
    <head>
    ...
    </head>

    <body>
        {% include_relative README.md %}
    </body>
</html>

应该很适合你。随时将您需要的任何其他内容添加到 "template"。要从 GitHub 页面生成器获取主题,您可能只需打开当前的 index.html 并将其复制出来,用 include 标签替换所有内容。