aglio icon indicating copy to clipboard operation
aglio copied to clipboard

An API Blueprint renderer with theme support that outputs static HTML

Results 102 aglio issues
Sort by recently updated
recently updated
newest added

Screenshot ![image](https://user-images.githubusercontent.com/4025839/29814523-4231714c-8ce0-11e7-80f2-d711e982f715.png)

It would be useful to have a "try it out" or "call endpoint" feature. This will allow the users a level of interaction with the documented api. This feature will:...

feature request
needs work

I think this gives a better ux since schema can be guessed from example and it tends to be way longer than the body itself. Having it displayed by default...

API Blueprint allows `Resource` sections to be anonymous, as described in the [specification](https://github.com/apiaryio/api-blueprint/blob/master/API%20Blueprint%20Specification.md#definition-6). ```md #### Definition Defined by an [URI template][uritemplate]: # ``` ### Current behavior With this configuration, Aglio...

+ Attributes not rendering in HTML, Can you please check this.

I have a private engine at `@my-private-scope/aglio-theme-foo`. When I do `aglio -t foo`, aglio is unable to find this module, because it's only looking for modules like [this](https://github.com/danielgtaylor/aglio/blob/master/src/main.coffee#L55): ```javascipt require('aglio-theme-'...

If the config specifies a body, do not generate one for that item

Here is my sample API blueprint _test-enum-datastructure.apib_ ``` FORMAT: 1A HOST: http://localhost:3000 # CustomerData API test enum API # Data Structures ## clients (enum) + Members + A + B...

I have the following data structures defined ``` ### LocationStruct (object) + country: Australia (CountryStruct) + city: Sydney (string) + latitude (number, nullable) + longitude (number, nullable) ### CountryStruct (object)...

Take a simple document like this one: ``` FORMAT: 1A HOST: https://cold.pizza # Some API # Root [POST /foo] + Request (application/xml) + Attributes (foo) + Body something + Response...