Since the GitHub wiki does not support directories, I want to put my md files into GitHub pages. However when I open them I found they are not interpreted at all. GitHub just gives me the raw file. See http://greenlaw110.github.com/Rythm/en/index.md. Any idea?
相关问题
- How to add working directory to deployment in GitH
- Markdown to clipboard as rich text
- Upload file > 25 MB on Github
- Jekyll Error “Liquid Exception: undefined method `
- Can I input Git command in Android Studio IDE?
相关文章
- java开发bug问题:GitHub授权登录无法获取授权账号信息?
- >>" markdown 引用语法" href="https://www.manongdao.com/article-2318498.html" > 有没有办法让 markdown-it 支持 ">>>" markdown 引用语法
- Is there a Github markdown language identifier for
- “no implicit conversion of Integer into String” er
- GitHub:Enterprise post-receive hook
- markdown自动代码缩进8格?
- git commit directory
- Can you import/reference info from text files into
The documentation isn't particularly clear on this, but given that the Markdown rendering is done by Jekyll, I believe you need what they call "YAML front matter" for it to compile the page. So try putting this at the top of your file:
That should be enough to trigger Jekyll. (And then you can get fancy and start using layouts, etc.)