From a162a797bb4a145101346ea94675e06685138287 Mon Sep 17 00:00:00 2001 From: Alex Calderwood Date: Tue, 24 May 2022 15:16:36 -0700 Subject: [PATCH 1/2] instructions on installing webrick --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 3aee993..42a36fa 100644 --- a/README.md +++ b/README.md @@ -62,3 +62,13 @@ Jekyll uses the [Liquid template language](https://shopify.github.io/liquid/) to ### Why are all the pages stored as `{{actual-page-name}}/index.html` instead of `{{actual-page-name}}.html`? It's a matter of personal preference! I think URLs look cleaner without unnecessary filetype suffixes, and this is a way to achieve the cleaner URLs I crave. + +## I'm getting an error when running `jekyll serve` locally + +If your error includes this message: + + cannot load such file -- webrick (LoadError) + +You may need to install webrick manually with gem + + gem install webrick From 54c71c40c9384c055490c54921c0c3570b63727b Mon Sep 17 00:00:00 2001 From: Alex Calderwood Date: Tue, 24 May 2022 15:17:03 -0700 Subject: [PATCH 2/2] add an additional # --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 42a36fa..a01deb4 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ Jekyll uses the [Liquid template language](https://shopify.github.io/liquid/) to It's a matter of personal preference! I think URLs look cleaner without unnecessary filetype suffixes, and this is a way to achieve the cleaner URLs I crave. -## I'm getting an error when running `jekyll serve` locally +### I'm getting an error when running `jekyll serve` locally If your error includes this message: