Skip to content

Commit 5e940a8

Browse files
committed
jekyll minor format
1 parent 5910eb8 commit 5e940a8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

docs/install-jekyll.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,34 @@ sudo gem install bundler jekyll
1414
```
1515

1616
## To be able to serve via Jekyll
17+
1718
Make sure your project has a file called `Gemfile` in its root with the following contents:
19+
1820
```
1921
source 'https://rubygems.org'
2022
gem 'github-pages', group: :jekyll_plugins
2123
```
2224

2325
It is also common practice to have a file called `.gitignore` in the project root with (at least) the following contents:
26+
2427
```
2528
# Jekyll generated
2629
/_site/
2730
/Gemfile.lock
2831
```
2932

3033
## Serve via Jekyll
34+
3135
```bash
3236
bundle exec jekyll serve
3337
```
3438

3539
Now browse to <http://localhost:4000>
3640

3741
## Troubleshooting Jekyll
42+
3843
To install missing components:
44+
3945
```bash
4046
bundle install
4147
```

0 commit comments

Comments
 (0)