zoukankan      html  css  js  c++  java
  • jekyll 安装使用

    1. 安装
     
      条件: ruby gem 注意版本,同时建议使用国内的镜像
      
    1. gem install jekyll bundler
     
    2. 创建网站
     
    1. jekyll new my-awesome-site
     
    3.  启动
    1. cd my-awesome-site
    2. bundle exec jekyll serve
     
    4. 基本启动命令
    1. $ jekyll build
    2. #=>当前文件夹中的内容将会生成到./_site 文件夹中。
    3. $ jekyll build --destination <destination>
    4. #=>当前文件夹中的内容将会生成到目标文件夹<destination>中。
    5. $ jekyll build --source <source>--destination <destination>
    6. #=>指定源文件夹<source>中的内容将会生成到目标文件夹<destination>中。
    7. $ jekyll build --watch
    8. #=>当前文件夹中的内容将会生成到./_site 文件夹中,
    9. #查看改变,并且自动再生成。
     
    5. 参考地址
     
    1. http://jekyllrb.com/
    2. http://jekyllcn.com (中文)
     
  • 相关阅读:
    嵌入式驱动视频2019.03.24
    wps如何输入连续的长破折号
    python绘图问题
    2.13
    2.12
    2.10
    2.9
    2.8
    2.7
    2.5
  • 原文地址:https://www.cnblogs.com/rongfengliang/p/6665424.html
Copyright © 2011-2022 走看看