-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added strict rules and link to them from speccy
- Loading branch information
Phil Sturgeon
committed
Jun 13, 2018
1 parent
8d1aed6
commit 6297c90
Showing
12 changed files
with
1,833 additions
and
2,592 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<table class="table table-striped table-inverted"> | ||
<thead> | ||
<tr> | ||
<td>Name</td> | ||
<td>OpenAPI Object</td> | ||
<td>Description</td> | ||
</tr> | ||
</thead> | ||
{% for rule in include.rules %} | ||
<tr> | ||
<td id="{{ rule.name }}"> | ||
<a href="#{{ rule.name }}">{{ rule.name }}</a> | ||
</td> | ||
<td> | ||
{% if rule.object == "*" %} | ||
<em>everything</em> | ||
{% elsif rule.object == "openapi" %} | ||
<a href="https://swagger.io/specification/#oasObject">{{ rule.object }}</a> | ||
{% else %} | ||
<a href="https://swagger.io/specification/#{{ rule.object }}Object">{{ rule.object }}</a> | ||
{% endif %} | ||
</td> | ||
<td>{{ rule.description }}</td> | ||
</tr> | ||
<tr> | ||
<td colspan=3>{{ rule.more | markdownify }}</td> | ||
</tr> | ||
{% endfor %} | ||
</table> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.