blogdown 1.4
NEW FEATURES
check_config()
now checks forbaseURL
that only provides a domain name but lacks thehttps
(orhttp
) protocol, e.g.,baseURL: example.com/
is typically not a valid URL, but should behttps://example.com/
instead (thanks, @apreshill, #616).
BUG FIXES
-
Fixed a new issue with
blogdown::new_site(theme = "wowchemy/starter-hugo-academic")
(#638). To avoid similar issues with the academic theme in the future, we recommend that you consider using thehugo-apero/hugo-apero
theme instead. -
install_hugo()
can install the correct version of Hugo on a machine with an ARM processor now (thanks, @r-saikat, #636). -
clean_duplicates()
now correctly deletes duplicated.html
file instead of.md
whenblogdown.method
option is set tomarkdown
(thanks, @apreshill, #628). -
clean_duplicates()
also correctly deletes unused directories like*_files/header-attrs
associated with.html
output files (thanks, @apreshill, #632).