Jekyll Cheatsheet

Commands

Start the Server


# Start the server, by default it runs watch
$ jekyll serve

Markdown

Red Carpet

Supports github flavored-code comments.

Does not support css classes for markdown.

For tables to work we need to add to the _config.yml

markdown: kramdown

For css for tables, for now, we can just take a global approach, using the bootstrap class:

table {
  @extend .table;
}

Other Helps

http://stackoverflow.com/a/28737999/466390

http://veithen.github.io/2015/03/26/jekyll-bootstrap.html

http://kvurd.com/blog/my-jekyll-blog-setup-bootstrap-sass-pygments/

https://github.com/aahan/pygments-github-style


blog comments powered by Disqus