作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 Hugo 建立一个博客,只要我使用 Markdown,它基本上就可以正常工作。但由于我在存储库中还有一些带有 antora 的其他网站内容(文档),所以我想用 asciidoc 编写所有文本。但当我尝试从 adoc 文件生成网站时,我总是遇到这个错误。 Markdown 可以工作,但 Asciidoc 给出了这个异常(exception):
sebastian@kobol:~/work/repos/sommerfeld-io/website/blog$ hugo
Start building sites …
hugo v0.92.1-85E2E862 linux/amd64 BuildDate=2022-01-27T11:44:41Z VendorInfo=gohugoio
Error: Error building site: "/home/sebastian/work/repos/sommerfeld-io/website/blog/content/posts/my-second-post.adoc:1:1": access denied: "asciidoctor" is not whitelisted in policy "security.exec.allow"; the current security configuration is:
[security]
enableInlineShortcodes = false
[security.exec]
allow = ['^dart-sass-embedded$', '^go$', '^npx$', '^postcss$']
osEnv = ['(?i)^(PATH|PATHEXT|APPDATA|TMP|TEMP|TERM)$']
[security.funcs]
getenv = ['^HUGO_']
[security.http]
methods = ['(?i)GET|POST']
urls = ['.*']
Total in 40 ms
任何人都可以给我一个关于如何允许从hugo builds 访问asciidoctor 的提示吗?
最佳答案
这是默认值 Security Policy 。您需要编辑 config.toml
文件(或放置 Hugo 配置文件的任何位置)并添加自定义安全策略。
至少,自定义安全策略将是默认策略的“剪切和粘贴”,并添加一两个额外的正则表达式。
例如:
[security]
enableInlineShortcodes = false
[security.exec]
allow = ["^dart-sass-embedded$", "^go$", "^npx$", "^postcss$", "^asciidoctor$"]
osEnv = ["(?i)^(PATH|PATHEXT|APPDATA|TMP|TEMP|TERM|RUBYLIB)$"]
[security.funcs]
getenv = ["^HUGO_"]
[security.http]
methods = ["(?i)GET|POST"]
urls = [".*"]
我还添加了 RUBYLIB
环境变量来告诉 Hugo 告诉 AsciiDoctor 它的 inline macro extensions 在哪里直播。
关于blogs - 雨果与 Asciidoctor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71058236/
在 Hugo 的帮助下,我正在创建一个法语博客。目前我所有的日期都以英语(二月)显示,但我希望它们以法语(février)显示。如何设置语言? 我的 config.toml 看起来像这样: baseU
我是一名优秀的程序员,十分优秀!