blogdown 1.10
-
For Jekyll sites, a new global option can be used to determine whether to run
jekyll
directly or use thebundler
gem to runjekyll
(i.e.,bundle exec jekyll
). If you prefer the latter way, you may setoptions(blogdown.jekyll.bundler = TRUE)
before runningblogdown::serve_site()
(thanks, @pat-s, #695). -
Adapted to some breaking changes in the wowchemy academic theme again (thanks, @bjsmith, #704). As mentioned in blogdown v1.4, we recommend blogdown users to consider using the hugo-apero theme when creating new sites. This theme is maintained by blogdown authors and much more stable.
-
Updated documentation to mention that the
tweet
shortcode (or the R wrapper functionblogdown::shortcode('tweet')
) will require the Twitter username for Hugo >= v0.89.0. Previously only the tweet ID is required, e.g.,{{< tweet 852205086956818432 >}}
, but now it also requires the user, e.g.,{{< tweet user="jtleek", id="852205086956818432" >}}
(thanks, @lcolladotor, #701).