通过API使用Asciidoctor时,默认的安全模式是`SECURE`。您可以使用`:safe` API选项更改安全模式。
设置:安全选项
安全模式可以通过API使用`:safe`选项来控制。:safe`选项被所有的入口点方法(例如,`Asciidoctor#convert_file
)接受。
:safe` 选项接受一个字符串形式的安全模式:
Asciidoctor.convert_file 'doc.adoc', safe: 'server'
作为一个首选的符号:
Asciidoctor.convert_file 'doc.adoc', safe: :server
作为一个整数:
Asciidoctor.convert_file 'doc.adoc', safe: 10
您也可以通过CLI设置安全模式,以及根据当前安全模式启用或禁用内容。