Jekyll sites are supported via options(blogdown.generator = "jekyll").
Yet some sites make use of bundler, which is similar to {renv} in that it runs on a lockfile which defines the gem versions.
Often enough a normal call to jekyll won't work for such environments.
Hence one would need to call bundle exec jekyll to make blogdown::serve_site() work.
Currently this is not supported.
Adding support for bundle exec jekyll would be great! (PR incoming)
Jekyll sites are supported via
options(blogdown.generator = "jekyll")
. Yet some sites make use ofbundler
, which is similar to {renv} in that it runs on a lockfile which defines the gem versions.Often enough a normal call to
jekyll
won't work for such environments. Hence one would need to callbundle exec jekyll
to makeblogdown::serve_site()
work. Currently this is not supported.Adding support for
bundle exec jekyll
would be great! (PR incoming)