README.md in jekyll-notes-0.1.0 vs README.md in jekyll-notes-0.1.1

- old
+ new

@@ -9,9 +9,41 @@ <img src="screenshot-menu.png" alt="drawing" width="350"/> ## Installing +### Using gem + +Gemfile +```yaml +gem "jekyll-notes" +``` + +_config.yml +```yaml +theme: jekyll-notes + +collections: + sections: + output: false + chapters: + output: true +``` + +Run `bundle install` + +Create _chapters folder and make .md files inside. + +```yaml +--- +layout: default +--- +``` + +Change index.markdown from `layout: home` to `layout: default` + +## Installing using jekyll-remote-theme + 1. Edit Gemfile ```yaml group :jekyll_plugins do gem "jekyll-remote-theme" end