What API drawing renderer can generate a three-column html file for API documentation purposes?

Here's the Stripe API document: https://stripe.com/docs/api It seems they are using a three-column template. I am wondering if they use any kind of rendering API renderer (markdown-to-html script type) to create it similar to Aglio: https://github.com/danielgtaylor/aglio

If they do not use any renderer, what other types of rendering of the API drawings exist there?

+4
source share
1 answer

Stripe uses a tool to create its own document, but Slate ( https://github.com/tripit/slate ) is a tool modeled from the Stripe documentation. It looks very similar and may be what you are looking for. I have not used it myself, so unfortunately I can’t tell you more.

If you want to stick with the Markdown flavor of the Blueprint API, take a look at the apiary ( http://apiary.io ) as an alternative to aglio. These are not three column layouts, but it is nice.

+6
source

All Articles