我将 asciidoc 与此处描述的保护文件一起使用描述的保护文件一起使用。
给定 asciidoctor 选项:asciidoctor -a icons -a iconsdir /foo -a copycss bar.adoc
我想将这些选项添加到保护文件中。但我不知道怎么做。
保护文件当前看起来像:
require 'asciidoctor'
require 'erb'
guard 'shell' do
watch(/^ble\.adoc$/) {|m|
Asciidoctor.render_file(m[0], :in_place => true, :backend => 'html5')
}
end
guard 'livereload' do
watch(%r{^.+\.(css|js|html)$})
end