Appreciate, respect and accept it, don't take it for granted

Github Pages with Octopress

2016-02-18

建置Octopress

設定佈署到 github

rake setup_github_pages

輸入自己的Github Pages repository url
git@github.com:your_username/your_username.github.io.git

網站設定

Configuring Octopress

內容管理

Octopress的網頁內容是使用Markdown語法
Blog的文章會被存放在source/_posts, 以Jekyll’s naming conventions:YYYY-MM-DD-post-title.markdown來命名

如何在Octopress分享程式碼

markdown方法

若為區塊程式碼, 使用4個空白或1個tab
若為行內程式碼, 使用反引號 `

octopress方法

Sharing Code Snippets in Octopress

常用指令

建立新文章

rake new_post["標題"]
#保存在 source/_posts/日期-標題.markdown

建立新頁面

rake new_page[super-awesome]
#creates /source/super-awesome/index.markdown
#保存在anywhere in your blog source directory

rake new_page[super-awesome/page.html]
# creates /source/super-awesome/page.html 

產生網站檔案

rake generate
# Generates posts and pages into the public directory

發佈到 GitHub

rake deploy

Blog comments powered by Disqus