Skip to content

Commit

Permalink
(docs) Fix rendering of markdown links in OAuth docs HTML
Browse files Browse the repository at this point in the history
Fixes link rendering in HTML portion of the OAuth docs by converting
them to anchor tags.

Signed-off-by: hasheddan <[email protected]>
  • Loading branch information
hasheddan committed Sep 14, 2021
1 parent 677772e commit dea56fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/spec/auth/oauth.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Content-Type: application/x-www-form-urlencoded
to be registered with the authorization server but should be set to a
meaningful value in order to allow auditing keys created by unregistered
clients. Accepted syntax is defined in
[RFC6749 Appendix A.1](https://tools.ietf.org/html/rfc6749#appendix-A.1)
<a href="https://tools.ietf.org/html/rfc6749#appendix-A.1" rel="noopener noreferrer nofollow" target="_blank">RFC6749 Appendix A.1</a>.
</dd>
<dt>
<code>access_type</code>
Expand Down Expand Up @@ -126,7 +126,7 @@ Content-Type: application/x-www-form-urlencoded
<dd>
(REQUIRED) The scope granted inside the access token. This may be the
same scope as requested or a subset. This requirement is stronger than
specified in [RFC6749 Section 4.2.2](https://tools.ietf.org/html/rfc6749#section-4.2.2)
specified in <a href="https://tools.ietf.org/html/rfc6749#section-4.2.2" rel="noopener noreferrer nofollow" target="_blank">RFC6749 Section 4.2.2</a>
by strictly requiring the scope in the return value.
</dd>
<dt>
Expand All @@ -142,7 +142,7 @@ Content-Type: application/x-www-form-urlencoded
<code>issued_at</code>
</dt>
<dd>
(Optional) The <a href="https://www.ietf.org/rfc/rfc3339.txt">RFC3339</a>-serialized UTC
(Optional) The <a href="https://www.ietf.org/rfc/rfc3339.txt" rel="noopener noreferrer nofollow" target="_blank">RFC3339</a>-serialized UTC
standard time at which a given token was issued. If <code>issued_at</code> is omitted, the
expiration is from when the token exchange completed.
</dd>
Expand Down

0 comments on commit dea56fa

Please sign in to comment.