danielgtaylor / aglio

An API Blueprint renderer with theme support that outputs static HTML
4.75k stars 480 forks source link

Show %-escaped parameters in Action URI template #350

Open d4be4st opened 6 years ago

d4be4st commented 6 years ago

In apiary version 2.3.0 #73 does not work anymore

# Group Users
Group description

### User List [GET /users{?name%5b%5d,joinedBefore,joinedAfter,sort,limit}]
A list of users

+ Parameters
    + name%5b%5d (optional, string, `alice`) ... Search for a user by name
    + joinedBefore (optional, string, `2011-01-01`) ... Search by join date
    + joinedAfter (optional, string, `2011-01-01`) ... Search by join date
    + sort = `name` (optional, string, `joined`) ... Which field to sort by

Gives:

Aglio version

$ aglio -v
aglio 2.3.0
olio 1.6.3
jfesler commented 6 years ago

+1.

I'm resorting to just using comments instead of using parameters, because most of the parameters have %5b / %d in their names.

brianpunzalan commented 6 years ago

+1

Same issue im having.

PeterCat12 commented 3 years ago

Any update on this?