如何将带有“include”部分的Asciidoc文档编译到单个adoc文件中

时间:2017-03-16 12:00:42

标签: java spring asciidoc spring-restdocs

我正在使用spring-restdocs为项目生成文档。主asciidoc文档包含描述adoc / request的其他response代码段:

include::{snippets}/projects/findOne_info/1/http-response.adoc[]

我正在gradle中使用asciidoc plugingradle

有了这个,我可以运行html任务来生成完整的文档并获得github wiki输出。

我想要做的是,我希望将此文档作为asciidoc包含在adoc中,这就是我需要将完整文档编译到html文件而不是let myAlert = UIAlertController(title: "Congratualtions", message: "Correct answer selected, move on to next level", preferredStyle: UIAlertControllerStyle.alert) let okAction = UIAlertAction(title: "Ok", style: UIAlertActionStyle.default) { action in self.dismiss(animated: true, completion: nil) } myAlert.addAction(okAction); self.present(myAlert, animated: true, completion:nil) 的原因}。有没有办法做到这一点?

1 个答案:

答案 0 :(得分:2)

请参阅Asciidoctor扩展实验室的此脚本:https://github.com/asciidoctor/asciidoctor-extensions-lab/blob/master/scripts/asciidoc-coalescer.rb。它并不完美,但它是一个开始。