安装Jekyll

25 Sep 2019

使用Ubuntu库安装Ruby & Rubygems

sudo apt update

sudo apt install ruby-full

ruby --version

gem -v

安装gcc, g++ and make

sudo apt update

sudo apt install build-essential

gcc --version

安装bundler gems

gem install jekyll bundler

创建Jekyll网站

jekyll new myblog

cd myblog

Build the site and make it available on local server

bundle exec jekyll serve

使用Jekyll语句QnA

  1. 使用什么语句可以让pages按照文件名顺序显示?
    使用sort关键字,例如: ```
2. 怎样只显示有某个属性定义的文件?  
使用`xxx == nil` 或`xxx !=nil`语句,例如:  
3. 怎样输出一个按照文件名排序的表格?  
使用`for`语句,例如:  

| Module | Lab | | — | — |


**注**:示例中所用到的头部为:  

lab: title: ‘xxx’ type: ‘xxx’ module: ‘xxx’ — ```