使用jekyll搭建本身的博客系統

方式一

  1. 在上網下載一款Jekyll主題
  2. 修改配置
  3. 在_posts文件夾內寫博客,並推送到本身的github page上去。

方式二

這種方法主要是用來在本地預覽效果,這樣不用每次寫完博客或網頁後必須上傳到github上才能夠看到效果。css

  1. 下載Ruby
    在官網下載,安裝時將ruby添加到環境變量選項勾選。
  2. 下載Ruby DevKit
    將DevKit解壓到須要的路徑,而後打開命令行進入到這個目錄執行以下命令
cd 解壓目錄
    ruby dk.rb init
    ruby dk.rb install
    #官方源不可用
    gem sources --add https://gems.ruby-china.org/ --remove https://rubygems.org/
    gem install jekyll

gem sources --add https://gems.ruby-china.org/ --remove https://rubygems.org/ 應爲ssl沒法經過的話,能夠使用http協議。 3. 下載主題
4. 預覽效果
jekyll --server --auto
http://localhost:4000 預覽git

如下是本人安裝過程當中遇到的問題:
Jekyll 3x版本使用主題時,在配置_config.yml時,github

markdown: redcarpet
    redcarpet:
    extensions:
        - hard_wrap
        - no_intra_emphasis
        - autolink
        - strikethrough
        - tables
        - lax_spacing
        - with_toc_data

改變爲ruby

markdown: kramdown
    kramdown:
    input: GFM
    extensions:
        - autolink
        - footnotes
        - smart
        - hard_wrap
        - no_intra_emphasis
        - strikethrough
        - tables
        - lax_spacing
        - with_toc_data
    enable_coderay: true
    syntax_highlighter: rouge
    coderay:
        coderay_line_numbers:  nil

參考連接bash

  1. Jekyll官方教程
  2. ruby鏡像
  3. 參考的博客
  4. Jekyll主題
相關文章
相關標籤/搜索