我正在使用spring-restdocs为项目生成文档。主asciidoc
文档包含描述adoc
/ request
的其他response
代码段:
include::{snippets}/projects/findOne_info/1/http-response.adoc[]
我正在gradle
中使用asciidoc plugin
和gradle
。
有了这个,我可以运行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)
的原因}。有没有办法做到这一点?
答案 0 :(得分:2)
请参阅Asciidoctor扩展实验室的此脚本:https://github.com/asciidoctor/asciidoctor-extensions-lab/blob/master/scripts/asciidoc-coalescer.rb。它并不完美,但它是一个开始。