Florian Benz

Results 10 comments of Florian Benz

We actually have a case in our examples: https://github.com/ScaCap/spring-auto-restdocs/blob/d658385692437e5ffe110e3f274f4388c2fefaa2/samples/java-webmvc/src/main/java/capital/scalable/restdocs/example/items/ItemResource.java#L116 but there we use `` and not `{@code}`. The result is We also recently added support for code tags in our...

I just discovered that this feature has been requested already https://github.com/ScaCap/spring-auto-restdocs/issues/346 and a PR has been started as well https://github.com/ScaCap/spring-auto-restdocs/pull/390 but never finished. We could pick this up again. The...

`restdocs-api-spec` works by extracting data out of the Spring REST Docs snippets. For example, for the request fields it is done in [MockMvcRestDocumentationWrapper#122](https://github.com/ePages-de/restdocs-api-spec/blob/master/restdocs-api-spec/src/main/kotlin/com/epages/restdocs/apispec/MockMvcRestDocumentationWrapper.kt#L122). There are two issues when trying to...

Further alternatives: * https://github.com/fbenz/restdocs-to-swagger - rather complicated and hard to automate * We use Springfox in addition to Spring Auto REST Docs. There is no connection between both setups and...

Am I correct that you are expecting the following result: ``` |=== |Path|Type|Optional|Description |results.active |Boolean |true |@return the active. ``` and currently we are omitting `results` part incorrectly?

This looks helpful. The project supports both Markdown and AsciiDoc and if possible we try to support features for both, but Markdown has its limitations. We will likely not add...

There are no plans to go beyond Javado/KDoc. The sole purpose of the Dokka extension is to extract documentation for Spring Auto REST Docs. Feel free to fork the Dokka...

I started looking into migrating to the latest Dokka version. The whole integration change and thus it's a rewrite for our plugin. However, I can't provide a timeline.

Archiving the project

I solved it for myself by creating a small npm package that does the job: https://www.npmjs.com/package/restdocs-to-postman It can be used as a CLI tool: ``` restdocs-to-postman --folder generated-snipptes --export-format postman...