diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2020-05-10 03:14:26 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2020-05-10 03:14:26 -0600 |
| commit | 11aaeabed5935cdb7e65b65eb44b44210f039b87 (patch) | |
| tree | aae7087eb3a3de83df96cf360b0d1427f388e9e1 | |
| parent | b02ad26f4beedd3c7f974d9937595a09b4ce8778 (diff) | |
fix missing space in source of manpage converter
| -rw-r--r-- | lib/asciidoctor/converter/manpage.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asciidoctor/converter/manpage.rb b/lib/asciidoctor/converter/manpage.rb index 6143f0a1..0ad2e7b3 100644 --- a/lib/asciidoctor/converter/manpage.rb +++ b/lib/asciidoctor/converter/manpage.rb @@ -727,7 +727,7 @@ allbox tab(:);' gsub('⇐', '\(lA'). # leftwards double arrow gsub('⇒', '\(rA'). # rightwards double arrow gsub('​', '\:'). # zero width space - gsub('&','&'). # literal ampersand (NOTE must take place after any other replacement that includes &) + gsub('&', '&'). # literal ampersand (NOTE must take place after any other replacement that includes &) gsub('\'', '\(aq'). # apostrophe-quote gsub(MockBoundaryRx, ''). # mock boundary gsub(ESC_BS, '\\'). # unescape troff backslash (NOTE update if more escapes are added) |
