[openssl/web] c57ca9: Fix the HTML rendering of man pages to avoid markd...
Richard Levitte
noreply at github.com
Mon Nov 27 16:17:04 UTC 2023
Branch: refs/heads/master
Home: https://github.com/openssl/web
Commit: c57ca99f0c927a217c1a1aa557841ee49bf682f4
https://github.com/openssl/web/commit/c57ca99f0c927a217c1a1aa557841ee49bf682f4
Author: Richard Levitte <levitte at openssl.org>
Date: 2023-11-27 (Mon, 27 Nov 2023)
Changed paths:
A bin/fix-man-html
M bin/mk-manpagetts
M bin/mk-manpagetts3
Log Message:
-----------
Fix the HTML rendering of man pages to avoid markdown reinterpretation
Some of our manpages have the construct "[something](somethingelse)".
>From a POD and HTML perspective, there's nothing special with that.
However, since we wrap the HTML with markdown (perfectly legitimate), we
need to pay attention that nothing in the HTML can reasonably be
reinterpreted as markdown.
Unfortunately, the construct mentioned about has that issue.
This is easily fixed by replacing '](' with '](', which is valid
HTML5.
Reviewed-by: Matt Caswell <matt at openssl.org>
(Merged from https://github.com/openssl/web/pull/443)
More information about the openssl-commits
mailing list