Gist.github显示.md文件,我付出了努力。 github页面也可以这样做 - 没有用户HTML,没有jekyll? https://github.com/blog/2289-publishing-with-github-pages-now-as-easy-as-1-2-3说
- 创建存储库(或导航到现有存储库)
- 通过网络界面提交Markdown文件,就像您使用任何其他文件一样
- 通过存储库的设置激活GitHub页面 就是这样 ...
醇>
如果您没有index.md(或index.html),我们将使用您的README文件作为网站索引
但这似乎不起作用,或者我误解了。 还有其他人试过这个流吗? 症状:
static {
AppCompatDelegate.setCompatVectorFromResourcesEnabled(trfor);
}
挂起 - 404小时后。
https://github.com/denis-bz/test-gh-pages下的主/文档 看起来不错,对一个git假人; 相同的.md渲染得很好 gist.github。
什么行不通:
Your GitHub Pages site is currently being built from the /docs folder in the master branch
Your site is published at https://denis-bz.github.io/test-gh-pages/
答案 0 :(得分:0)
master/docs/index.md
,没有index.html
且没有.nojekyll
,有效:
# github.com/new: make a new repo test-gh-pages
mkdir docs
cp -p .../my.md docs/index.md
echo "# test-gh-pages `isotime`" > README.md
git init
git add README.md docs/index.md
git commit -m "docs/index.md `isotime`"
git remote add origin https://github.com/<user>/test-gh-pages.git
git push -v --set-upstream origin master
# github.com/<user>/test-gh-pages settings: GitHub Pages master branch /docs
# (don't forget save)
Your GitHub Pages site is currently being built from the /docs folder in the master branch
显然这是电话
Jekyll将docs/index.md
转换为.html
浏览器要显示(在隐藏的缓存中?在运行中?不知道)。
10分钟后你会看到
Your site is published at https://<user>.github.io/test-gh-pages/
另见 is-there-a-command-line-utility-for-rendering-github-flavored-markdown :grip。
谢谢,GitHub支持。