安装 bundler 主题 数学公式 网站地图 目录 REF 今天终于在 Github 上成功搭建起 Jekyll ,虽然很丑,但是因为是自己定制的丑,还是很开心。 以后会慢慢美化这个博客,将更多的知识输出出
- 安装
- bundler
- 主题
- 数学公式
- 网站地图
- 目录
- REF
今天终于在 Github 上成功搭建起 Jekyll ,虽然很丑,但是因为是自己定制的丑,还是很开心。
以后会慢慢美化这个博客,将更多的知识输出出来。
安装
# in ubuntu you need install ruby before you get gem sudo apt install ruby gem install jekyll bundler # or in Ubuntu sudo apt install jekyll
bundler
bundler provides a consistent environment for Ruby projects by tracking and installing the exact gems and versions that are needed.
主题
可以使用 bundle show <theme>
查看主题所在的文件夹。比如:bundle show minima
。
数学公式
Inline math:
网站地图
jekyll-sitemap 可以自动创建网站地址。用法如下:
- 在 Gemfile 增加
gem 'jekyll-sitemap'
,然后运行bundle
- 在网站
_config.yml
中增加如下内容:
... plugins: - jekyll-sitemap
目录
如果 Jekyll 使用了 kramdown 引擎,那么会很容易。根据 Sean Buscay 的博客,只需要在待插入目录的地方加入以下代码即可:
* TOC {:toc}
REF
- jekyll homepage
- Creating and Hosting a Personal Site on GitHub
- Jekyll 中使用 KaTex
原文:大专栏 Hello Jekyll