gem install jekyll
will do for most users.jekyll serve
and you’ll be able to see your CV on your local host (the default address is http://localhost:4000).在项目的文件夹下执行,测试时使用的是bundle exec jekyll serve
index.md
file and see changes live in your browser.遇见的问题:
gem install 对应的包
安装“对应的包”。解决方案
在文件夹目录下依次执行
bundle install
bundle exec jekyll serve
使用bundle install
安装Gemfile
中的依赖时,遇到长时间无响应的情况。
其原因为:访问国外镜像源https://rubygems.org
速度较慢。
解决方案
此处使用 Gemfile
和Bundler
,可以用 Bundler 的 Gem 源代码镜像命令:
$ bundle config mirror.https://rubygems.org https://gems.ruby-china.com
详情请参考官方网站
解决方案
I added gem "kramdown-parser-gfm"
to Gemfile. Now the serve command completes successfully.
网页版简历打印为pdf时,右侧边缘部分显示不完整,推测时因为时间和地点字体是斜体导致,所以修改字体
/*注释掉原有css中字体部分即可*/
code {
/* font-family: "Palatino";
font-style: italic; */
float: right;
}
参考:
在 Windows 上搭建本地 Jekyll 编译环境时问题汇总