I have a Jekyll site that is hosted on Github Pages. I am trying to get my site to render locally before I push to Github, but I get the following error when running bundle exec jekyll serve --safe:
Liquid Exception: Liquid syntax error (line 13): Unknown tag 'gist'
My _config.yml contains the following (among other things):
gems:
- jekyll-gist
My Gemfile is as follows:
source 'https://rubygems.org'
gem 'github-pages'
And bundle show jekyll-gist shows a path to the gem that is installed.
I'm stumped!