aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/regress/mdoc/In
Commit message (Collapse)AuthorAgeFilesLines
* style message about missing blank before trailing delimiter;Ingo Schwarze2017-06-104-3/+4
| | | | inspired by mdoclint(1), and jmc@ considers it useful
* Macro argument quoting does not prevent recognition of punctuationIngo Schwarze2017-05-303-3/+3
| | | | | | | | | | | and of called macros. This bug affects almost all macros, and fixing it simplifies the code. It is amazing that the bogus ARGS_QWORD feature got implemented in the first place, and then carrier along for more than eight years without anybody ever noticing that it was pointless. Reported by Leah Neukirchen <leah at vuxu dot org>, found on Void Linux.
* Now that markdown output is tested for almost everything, test allIngo Schwarze2017-03-081-1/+0
| | | | | | input files in -T markdown output mode by default and only mark those files with SKIP_MARKDOWN that are not to be tested. Much easier to read, and almost minus 40 lines of Makefile code.
* Fix .In formatting in the SYNOPSIS:Ingo Schwarze2017-03-073-1/+61
| | | | No &zwnj; in the middle of **, please.
* first batch of -T markdown testsIngo Schwarze2017-03-053-0/+27
|
* Finally port the OpenBSD regression suite.Ingo Schwarze2017-02-0810-0/+136
| | | | | Both kristaps@ and wiz@ repeated asked for this, literally for years.
* Normalise SYNOPSIS behaviour after I gave up on following groff'sKristaps Dzonsons2010-06-071-24/+0
| | | | | | | | | | | | | | | | | | | | | inconsistent behaviour. In short: Some macros are displayed differently in the SYNOPSIS section, particularly Nm, Cd, Fd, Fn, Fo, In, Vt, and Ft. All of these macros are output on their own line. If two such dissimilar macros are pair-wise invoked (except for Ft before Fo or Fn), they are separated by a vertical space, unless in the case of Fo, Fn, and Ft, which are always separated by vertical space. Behaviour ok Jason McIntyre, ingo@. Fallout will be treated case-by-case. I had to clear out some regressions that were testing against groff's stranger behaviours: these will now break, as we don't care about such invocations. Also removed the newline for `Cd' invocation in a non-SYNOPSIS context.
* Documented `In' in full.Kristaps Dzonsons2010-06-041-0/+24
Fixed `In' to behave properly: it wasn't properly breaking lines, formatting, or really anything else. Noted COMPATIBILITY with OpenBSD's groff, which pukes all over `In'.