如何防止页面被 Blogdown 编辑但仍放置在 public 文件夹中?
How do I prevent a page from being edited by Blogdown but still placed in the public folder?
我有一个 google 验证 html 文件用于验证我是否拥有域。我希望将它放在 "public" 文件夹中,但是当我使用 blogdown::build_site 时,它会向其中添加额外的内容,使其无法再被 google 识别以进行验证。
google提供的HTML文件字面意思是一行
google-site-verification: google######
,但是当尝试将其按原样放置在内容文件夹中,或通过将 html 文件中的内容粘贴到 markdown 或 rmarkdown 中时,它不会呈现到正确的 google html 文件,又是一行。对我来说唯一成功的是从 google 中按原样复制文件并将其粘贴到 "public" 文件夹中,但这不太可行,因为 public文件不断被删除和重新创建。
将其添加到根文件夹或主题文件夹内的 static
文件夹中。相关文档在https://bookdown.org/yihui/blogdown/static-files.html.
All files under the static/
directory are copied to public/
when Hugo
renders a website.
我有一个 google 验证 html 文件用于验证我是否拥有域。我希望将它放在 "public" 文件夹中,但是当我使用 blogdown::build_site 时,它会向其中添加额外的内容,使其无法再被 google 识别以进行验证。
google提供的HTML文件字面意思是一行
google-site-verification: google######
,但是当尝试将其按原样放置在内容文件夹中,或通过将 html 文件中的内容粘贴到 markdown 或 rmarkdown 中时,它不会呈现到正确的 google html 文件,又是一行。对我来说唯一成功的是从 google 中按原样复制文件并将其粘贴到 "public" 文件夹中,但这不太可行,因为 public文件不断被删除和重新创建。
将其添加到根文件夹或主题文件夹内的 static
文件夹中。相关文档在https://bookdown.org/yihui/blogdown/static-files.html.
All files under the
static/
directory are copied topublic/
when Hugo renders a website.