diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2018-05-09 00:46:10 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2018-05-09 00:46:10 +0000 |
commit | 89fd4377ad43e25cfc8c8a1209a6a755e31f396c (patch) | |
tree | ca4a5a4056e029683a75904e9fa3e7feabb217cb /mandoc.css | |
parent | 11a29592a98a34719ad7bda3dcb43f50af04d6a5 (diff) | |
download | mandoc-89fd4377ad43e25cfc8c8a1209a6a755e31f396c.tar.gz |
Fix a long-standing issue:
Some macros (Nd, Oo) can contain blocks but rendered as elements that
can only contain phrasing content, resulting in invalid HTML nesting.
Switch them to <div>.
Also move the related "display: inline" style from the HTML to the CSS.
Reminded during a conversation with John Gardner.
Diffstat (limited to 'mandoc.css')
-rw-r--r-- | mandoc.css | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -41,7 +41,7 @@ table.head { width: 100%; td.head-vol { text-align: center; } td.head-rtitle { text-align: right; } -span.Nd { } +div.Nd { display: inline; } table.foot { width: 100%; border-top: 1px dotted #808080; @@ -164,7 +164,7 @@ code.Cm { font-style: normal; font-family: inherit; } var.Ar { font-style: italic; font-weight: normal; } -span.Op { } +div.Op { display: inline; } code.Ic { font-style: normal; font-weight: bold; font-family: inherit; } @@ -216,6 +216,7 @@ a.Ux { } /* Physical markup. */ +.Bf { display: inline; } .No { font-style: normal; font-weight: normal; } .Em { font-style: italic; |