How can I effectively use Hello Jekyll for a long-tail keyword question?
- 内容介绍
- 文章标签
- 相关推荐
本文共计500个文字,预计阅读时间需要2分钟。
安装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
本文共计500个文字,预计阅读时间需要2分钟。
安装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

