R blogdown with hugo 的 Hugo 警告(学术主题):我需要做什么吗?
Hugo warnings for R blogdown with hugo (academic theme): Do I need to do anything?
我每次在 blogdown 中构建时都开始收到警告
在 RStudio 中,我 运行 代码:
blogdown::serve_site()
站点呈现正常,但我收到以下警告。
Building sites … WARN 2020/02/19 17:13:53 Page.Hugo is deprecated and will be removed in a future release. Use the global hugo function.
WARN 2020/02/19 17:13:53 Page.RSSLink is deprecated and will be removed in a future release. Use the Output Format's link, e.g. something like:
{{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }}
WARN 2020/02/19 17:13:53 .File.TranslationBaseName on zero object. Wrap it in if or with: {{ with .File }}{{ .TranslationBaseName }}{{ end }}
WARN 2020/02/19 17:13:53 Page.Dir is deprecated and will be removed in a future release. Use .File.Dir
WARN 2020/02/19 17:13:53 Page.UniqueID is deprecated and will be removed in a future release. Use .File.UniqueID
WARN 2020/02/19 17:13:54 Page.URL is deprecated and will be removed in a future release. Use .Permalink or .RelPermalink. If what you want is the front matter URL value, use .Params.url
我只是想知道,我需要做些什么吗,或者这些问题是否可以通过以下方式解决:
- R 中的 blogdown 包?或
- hugo academic 他们呢?或
- 两者都有?或
- someone/thing 否则???
谢谢! :)
警告消息的目的是通知您您的站点正在使用的函数或引用变量已经或将被弃用,并从未来的 Hugo 版本中删除。如果它们在从 Hugo 中删除之前没有更改,您的网站可能无法构建。
现在,回答您的问题:除非您手动编辑布局文件或更改学术主题,否则这些警告将(应该)由学术的开发人员解决。您需要做的是确保更新主题 when new releases are available。
我每次在 blogdown 中构建时都开始收到警告
在 RStudio 中,我 运行 代码:
blogdown::serve_site()
站点呈现正常,但我收到以下警告。
Building sites … WARN 2020/02/19 17:13:53 Page.Hugo is deprecated and will be removed in a future release. Use the global hugo function.
WARN 2020/02/19 17:13:53 Page.RSSLink is deprecated and will be removed in a future release. Use the Output Format's link, e.g. something like:
{{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }}
WARN 2020/02/19 17:13:53 .File.TranslationBaseName on zero object. Wrap it in if or with: {{ with .File }}{{ .TranslationBaseName }}{{ end }}
WARN 2020/02/19 17:13:53 Page.Dir is deprecated and will be removed in a future release. Use .File.Dir
WARN 2020/02/19 17:13:53 Page.UniqueID is deprecated and will be removed in a future release. Use .File.UniqueID
WARN 2020/02/19 17:13:54 Page.URL is deprecated and will be removed in a future release. Use .Permalink or .RelPermalink. If what you want is the front matter URL value, use .Params.url
我只是想知道,我需要做些什么吗,或者这些问题是否可以通过以下方式解决:
- R 中的 blogdown 包?或
- hugo academic 他们呢?或
- 两者都有?或
- someone/thing 否则???
谢谢! :)
警告消息的目的是通知您您的站点正在使用的函数或引用变量已经或将被弃用,并从未来的 Hugo 版本中删除。如果它们在从 Hugo 中删除之前没有更改,您的网站可能无法构建。
现在,回答您的问题:除非您手动编辑布局文件或更改学术主题,否则这些警告将(应该)由学术的开发人员解决。您需要做的是确保更新主题 when new releases are available。