R Blogdown Hugo学术主题不呈现网站
R Blogdown Hugo academic theme not rendering site
我正在尝试使用 R Blogdown Hugo-Academic 主题创建一个网站。通常,我会通过 运行 以下命令创建网站:
blogdown::new_site(theme = 'gcushen/hugo-academic')
blogdown::serve_site()
但是我收到一个错误
failed to extract shortcode: template for shortcode "alert" not found
我发现了一个相关的 github 问题 here:
但似乎 gcushen/hugo-academic
正在转变为 wowchemy
如何解决?
我遇到了同样的问题,并通过编辑我的 config.toml 文件解决了这个问题:
检查您的主题是否设置正确(我的是):
# Name of Academic theme folder in `themes/`.
theme = "wowchemy-hugo-modules"
追加到末尾:
[module]
[[module.imports]]
path = "wowchemy-hugo-modules/wowchemy"
根据https://wowchemy.com/docs/install-locally/
然后 stop_server()
和 serve_site()
照常。
我正在尝试使用 R Blogdown Hugo-Academic 主题创建一个网站。通常,我会通过 运行 以下命令创建网站:
blogdown::new_site(theme = 'gcushen/hugo-academic')
blogdown::serve_site()
但是我收到一个错误
failed to extract shortcode: template for shortcode "alert" not found
我发现了一个相关的 github 问题 here:
但似乎 gcushen/hugo-academic
正在转变为 wowchemy
如何解决?
我遇到了同样的问题,并通过编辑我的 config.toml 文件解决了这个问题:
检查您的主题是否设置正确(我的是):
# Name of Academic theme folder in `themes/`.
theme = "wowchemy-hugo-modules"
追加到末尾:
[module]
[[module.imports]]
path = "wowchemy-hugo-modules/wowchemy"
根据https://wowchemy.com/docs/install-locally/
然后 stop_server()
和 serve_site()
照常。