Reputation: 2263
I have an API blueprint which goes something like this:
## Organization Users [/organizations/{id}/Users]
+ Parameters
+ id (string, required) - path variable, id of the organization.
some text was here.
### Get Org Users [GET]
some text was here.
+ Request (application/json)
When I run Aglio with something akin to:
aglio --theme-variables streak -i AppServices/Organizations.apib -o Build/AppServices.html
Notice that the path variables are simply not present.
Other facts:
Upvotes: 0
Views: 400
Reputation: 2263
Kyle Fuller (https://github.com/kylef) answered my question on the Aglio's github issues:
The parameters section is incorrectly intended and thus showing up as raw markdown description.
I think you want something like:
## Organization Users [/organizations/{id}/Users]
+ Parameters
+ id (string, required) - path variable, id of the organization.
some text was here.
### Get Org Users [GET]
some text was here.
+ Request (application/json)
Upvotes: 0