Skip to content

Commit 034fe19

Browse files
Trotttargos
authored andcommitted
doc: add links to inline HTML table
Links in crypto.md table have been autolinking, but correct Markdown processing will not autolink in block elements like tables. Upcoming marked 0.4.0 will not autolink in this instance, so add the links as anchor elements. PR-URL: #21678 Reviewed-By: Vse Mozhet Byt <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 214c608 commit 034fe19

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

doc/api/crypto.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -2412,7 +2412,7 @@ The following constants exported by `crypto.constants` apply to various uses of
24122412
the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL.
24132413

24142414
### OpenSSL Options
2415-
2415+
<!--lint disable maximum-line-length-->
24162416
<table>
24172417
<tr>
24182418
<th>Constant</th>
@@ -2421,20 +2421,20 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL.
24212421
<tr>
24222422
<td><code>SSL_OP_ALL</code></td>
24232423
<td>Applies multiple bug workarounds within OpenSSL. See
2424-
https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html for
2425-
detail.</td>
2424+
<a href="https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html">https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html</a>
2425+
for detail.</td>
24262426
</tr>
24272427
<tr>
24282428
<td><code>SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION</code></td>
24292429
<td>Allows legacy insecure renegotiation between OpenSSL and unpatched
24302430
clients or servers. See
2431-
https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html.</td>
2431+
<a href="https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html">https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html</a>.</td>
24322432
</tr>
24332433
<tr>
24342434
<td><code>SSL_OP_CIPHER_SERVER_PREFERENCE</code></td>
24352435
<td>Attempts to use the server's preferences instead of the client's when
24362436
selecting a cipher. Behavior depends on protocol version. See
2437-
https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html.</td>
2437+
<a href="https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html">https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html</a>.</td>
24382438
</tr>
24392439
<tr>
24402440
<td><code>SSL_OP_CISCO_ANYCONNECT</code></td>
@@ -2568,6 +2568,7 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL.
25682568
</table>
25692569

25702570
### OpenSSL Engine Constants
2571+
<!--lint enable maximum-line-length remark-lint-->
25712572

25722573
<table>
25732574
<tr>

0 commit comments

Comments
 (0)