我想在我的电子阅读器上以 epub 形式阅读 neo4j 手册(尤其是 cypher 手册)。如何创建该文档?鉴于文档是用 asciidoc 编写的,它应该是可能的。
尝试使用 a2x (8.6.8) 直接创建 epub:
cd manuals/src
a2x -fepub -dbook neo4j-manual.asciidoc
结果是:
a2x: ERROR: "xmllint" --nonet --noout --valid "/home/joerg/projects/neo4j/tmp/neo4j/manual/src/neo4j-manual.xml" returned non-zero exit status 1
即使只是创建文档(在构建 neo4j 之后)对我来说也失败了:
git clone git@github.com:neo4j/neo4j.git
cd neo4j/manual
mvn clean install
给我:
ERROR] Failed to execute goal org.neo4j.build.plugins:license-maven-plugin:3:check (check-licenses) on project neo4j-manual: Some files do not have the expected license header ->
那么,有什么想法可以创建 epub 吗?
解决方案
nawroth 指出了解决方案。这是我最后所做的:
apt-get install dbtoepub
git clone https://github.com/neo4j/neo4j.git
cd neo4j
mvn clean install -DdocsBuild -Ddebug -Dlicense.skip=true -Dlicensing.skip
cd manual/cd target/
ln -s src/images .
dbtoepub neo4j-manual-shortinfo.xml
我在https://baach.de/Members/jhb/neo4j-manual-as-epub上包含了创建的 neo4j.epub 文件