Markdown.pl: add missing space to implied attributes
commit53b4a581434ff67c2efec88ab78225bf093c78fb
authorKyle J. McKay <mackyle@gmail.com>
Tue, 16 Mar 2021 21:54:38 +0000 (16 14:54 -0700)
committerKyle J. McKay <mackyle@gmail.com>
Tue, 16 Mar 2021 21:54:38 +0000 (16 14:54 -0700)
tree376c028412a805673a10fe06c9d3bcb2fac5a566
parent39e875e4f5acf00a92b3ac97561d222402afe2fc
Markdown.pl: add missing space to implied attributes

When sanitizing an attribute with an implied value such
as "compact" or "checked", add the required space at the
end to avoid mashing up against any other attribute that
might be present.

For example, <ol compact start=10> now becomes the correct:

    <ol compact="compact" start="10">

rather than the previously incorrect:

    <ol compact="compact"start="10">

Signed-off-by: Kyle J. McKay <mackyle@gmail.com>
Markdown.pl