Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/index.jade
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,8 @@ html(lang="en")
when 'put': span(class='label label-info')= endpoint.method
when 'delete': span(class='label label-danger')= endpoint.method
when 'patch': span(class='label label-info')= endpoint.method
when 'options': span(class='label label-info')= endpoint.method
when 'head': span(class='label label-primary')= endpoint.method
a(href='#' + '#{helpers.uriWithMethodIdentifier(endpoint.uri, endpoint.method)}')= endpoint.uri
.col-md-10.col-md-offset-2
each documentation in api.apiDocumentations
Expand Down Expand Up @@ -201,6 +203,8 @@ html(lang="en")
when 'put': span(class='label label-info')= endpoint.method
when 'delete': span(class='label label-danger')= endpoint.method
when 'patch': span(class='label label-info')= endpoint.method
when 'options': span(class='label label-info')= endpoint.method
when 'head': span(class='label label-primary')= endpoint.method
= endpoint.uri

div(class='documentation__endpoints__description') !{endpoint.description}
Expand Down