hexo + github 使用方式

其實也不用寫什麼 … 因為別人寫得超好請參考

(一) 安裝方式

https://wwssllabcd.github.io/blog/2014/12/22/how-to-install-hexo/

1.1 __config.yml 設定

1
2
3
4
5
deploy:
type: git
repository: https://github.com/asdense/asdense.github.io.git
branch: master
# [Trouble Shooting] yml要有空白,不然會編譯錯誤...

1.2 上傳設定

1
2
3
4
5
6
7
8
9
# Step1 : Create a new post
$ hexo new "My New Post"
# Step2 : Edit post.md for notepad++
# Step3 : Run Local server
$ hexo server
# Step4 : Generate static files ( IMPORTANT !!! )
$ hexo generate
# Step5 : Deploy to remote sites
$ hexo deploy

1.3 MD Format ( 寫文章的方式 )

https://markdown.tw/
https://kingofamani.gitbooks.io/git-teach/content/chapter_6_gitbook/markdown.html (這偏比較好懂)

(二) 使用方式

https://yogapan.github.io/2017/08/11/%E7%94%A8Hexo-Github-Pages%E6%90%AD%E5%BB%BA%E5%80%8B%E4%BA%BA%E9%83%A8%E8%90%BD%E6%A0%BC/

2.1 參考Themes

https://hexo.io/themes/

2.2 調整Tags … (TBD)