将 openapi 3 文档(json 或 yaml)转换为 markdown、adoc 或任何其他静态格式的首选方法

发布于 2025-01-18 09:08:41 字数 259 浏览 0 评论 0原文

我尝试在 java 中找到一种简单的方法来将 openapi 3 文档(json 或 yaml)转换为静态格式,如 markdown、html 或 adoc。搜索周围我发现了一个像 Swagger2Markup 这样的视图项目,但它们还没有为 Openapi v3 做好准备!

有人对我的库或 Maven 插件有任何建议或提示吗?

I try to find an easy way in java to convert an openapi 3 document (json or yaml) in a static format like markdown, html or adoc. Searching around I've found a view projects like Swagger2Markup, but they aren't ready for Openapi v3!

Does anyone have any advice or an hint for a library or maven plugin for me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

诠释孤独 2025-01-25 09:08:41

您可能需要检查项目 https://github.com/mermade/mermade/widdershins
这是一个不错的工具,可将OpenAPI规格转换为Markdown。
它是一个NPM模块,它正在生成用于REDOC上的降压,但是您仍然可以自定义生成的模板

You may need to check the project https://github.com/Mermade/widdershins
It is a good tool that converts from Openapi specs to markdown.
it is an npm module, and it is generating markdown to use on Redoc, but you can still customize the generated template

抚你发端 2025-01-25 09:08:41

我找到了正确的Maven插件:

<plugin>
    <!-- converts the openapi docu to html -->
    <groupId>io.swagger.codegen.v3</groupId>
    <artifactId>swagger-codegen-maven-plugin</artifactId>
    <version>3.0.35</version>
    <executions>
        <execution>
            <id>export-opennapi-to-html-doc</id>
            <goals>
                <goal>generate</goal>
            </goals>
            <configuration>
               <inputSpec>${project.build.directory}/api.yml</inputSpec>
               <language>html2</language>
               <output>${project.basedir}/docs</output>
             </configuration>
         </execution>
    </executions>
</plugin>

I've found the correct maven plugin to do this:

<plugin>
    <!-- converts the openapi docu to html -->
    <groupId>io.swagger.codegen.v3</groupId>
    <artifactId>swagger-codegen-maven-plugin</artifactId>
    <version>3.0.35</version>
    <executions>
        <execution>
            <id>export-opennapi-to-html-doc</id>
            <goals>
                <goal>generate</goal>
            </goals>
            <configuration>
               <inputSpec>${project.build.directory}/api.yml</inputSpec>
               <language>html2</language>
               <output>${project.basedir}/docs</output>
             </configuration>
         </execution>
    </executions>
</plugin>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文