3

我正在尝试使用以下命令将我的 AsciiDoc 转换为 html5:

asciidoc -b html5 -a icons -a toc2 -a stylesheet=article.css myPost.adoc

它找不到我的 css 文件,因为它看起来位置不对: asciidoc: WARNING: myPost.adoc: line 1: include file not found: /usr/local/Cellar/asciidoc/8.6.9/etc/asciidoc/article.css

ascii还在生成的html文件中放置了一些css,所以我怎样才能删除它(或将它传递给外部文件),因为我有多个文件要转换并且不想复制它。

4

1 回答 1

1

asciidoc还有一个选项stylesdir=...

看着你的错误信息,我想知道你是否article.css输入了/usr/local/Cellar/asciidoc/8.6.9/etc/asciidoc?

也许article.css位于其他地方?

如果是这样,请这样称呼它:

asciidoc -b html5 -a icons -a toc2 -a stylesheet=article.css -a stylesdir=/path/to/article.css myPost.adoc


这在asciidoc 文档中进行了解释。

于 2017-02-09T05:02:40.313 回答