如何处理 github 上的帖子文件与实际网页不一致?
How to deal with the inconsistency between the posts file and the actual webpage on github?
各位,我是 github 的新手,并在其上建立了一个简单的博客。但是,当我在posts目录下添加新文件时,实际网站并不会立即更新(有时会),我以为是因为Chrome的缓存,但是当我清除了缓存,网页仍然没有任何变化。请帮忙!非常感谢!
第一次生成网站时,大约需要 10 分钟才能上线。从您将更改推送到 GitHub 存储库后,后续构建应该只需要几秒钟。
但是,根据 how your have your domain configured,Github CDN 缓存可能有额外的时间中断。
我在 https://github.com/wsstriving/wsstriving.github.io
查看了您的存储库
我找到的是一个使用 Jekyll 架构的网站。因此,对于一些有用的提示,您可以参考 Jekyll documentation here.
我尝试使用 Github pages setup 在本地构建您的网站,我发现您的 _posts/2015-05-24-markdown.md 在两个围栏代码块方面存在一些问题:
```flow
st=>start: Start
op=>operation: Your Operation
cond=>condition: Yes or No?
e=>end
st->op->cond
cond(yes)->e
cond(no)->op
```
和
```seq
Alice->Bob: Hello Bob, how are you?
Note right of Bob: Bob thinks
Bob-->Alice: I am good thanks!
```
中的两种引用语言(flow
和 seq
)
这就是 Github 页面构建失败的原因。
各位,我是 github 的新手,并在其上建立了一个简单的博客。但是,当我在posts目录下添加新文件时,实际网站并不会立即更新(有时会),我以为是因为Chrome的缓存,但是当我清除了缓存,网页仍然没有任何变化。请帮忙!非常感谢!
第一次生成网站时,大约需要 10 分钟才能上线。从您将更改推送到 GitHub 存储库后,后续构建应该只需要几秒钟。
但是,根据 how your have your domain configured,Github CDN 缓存可能有额外的时间中断。
我在 https://github.com/wsstriving/wsstriving.github.io
查看了您的存储库我找到的是一个使用 Jekyll 架构的网站。因此,对于一些有用的提示,您可以参考 Jekyll documentation here.
我尝试使用 Github pages setup 在本地构建您的网站,我发现您的 _posts/2015-05-24-markdown.md 在两个围栏代码块方面存在一些问题:
```flow
st=>start: Start
op=>operation: Your Operation
cond=>condition: Yes or No?
e=>end
st->op->cond
cond(yes)->e
cond(no)->op
```
和
```seq
Alice->Bob: Hello Bob, how are you?
Note right of Bob: Bob thinks
Bob-->Alice: I am good thanks!
```
中的两种引用语言(flow
和 seq
)
这就是 Github 页面构建失败的原因。