在 AsciiDoc 中使用制表符(Spring Rest Docs)
Using tabs in AsciiDoc (Spring Rest Docs)
我正在使用 Spring Rest Docs 生成文档。我想做一些类似 Bootstrap 的 Togglable tabs.
Spring 文档使用了可切换的选项卡,但我不知道该怎么做。这是一个示例(MockMvc / REST Assured):http://docs.spring.io/spring-restdocs/docs/1.1.0.RELEASE/reference/html5/#documenting-your-api
感谢您的帮助。
Asciidoctor 中没有对选项卡的内置支持,但它的可扩展性很强,可以让您很容易地添加这类东西。
Spring REST Docs 文档中的选项卡是使用 Groovy、CSS 和 Javascript 作为小型扩展实现的。如果您想看一下代码,它已添加到 this commit.
自提交以来,扩展已移至 separate project. Releases of that project are available from https://repo.spring.io/release. A few details on how to use the extension are available in the README。
我正在使用 Spring Rest Docs 生成文档。我想做一些类似 Bootstrap 的 Togglable tabs.
Spring 文档使用了可切换的选项卡,但我不知道该怎么做。这是一个示例(MockMvc / REST Assured):http://docs.spring.io/spring-restdocs/docs/1.1.0.RELEASE/reference/html5/#documenting-your-api 感谢您的帮助。
Asciidoctor 中没有对选项卡的内置支持,但它的可扩展性很强,可以让您很容易地添加这类东西。
Spring REST Docs 文档中的选项卡是使用 Groovy、CSS 和 Javascript 作为小型扩展实现的。如果您想看一下代码,它已添加到 this commit.
自提交以来,扩展已移至 separate project. Releases of that project are available from https://repo.spring.io/release. A few details on how to use the extension are available in the README。