summaryrefslogtreecommitdiffstats
path: root/regress/usr.bin/mandoc/mdoc/Cm (follow)
Commit message (Collapse)AuthorAgeFilesLines
* trivial adjustment of the desired test resultsschwarze2020-07-211-9/+9
| | | | after getting rid of the "copyless" crutch
* Separate the place to put the <a href> permalink (now markedschwarze2020-04-071-5/+5
| | | | | | | with NODE_HREF) from the target element of the link (still marked with NODE_ID). In many cases, use this to move the target to the beginning of the paragraph, such that readers don't get dropped into the middle of a sentence.
* Just like we are already doing it in HTML output, automatically tagschwarze2020-04-011-0/+2
| | | | | | | section and subsection headers in terminal output, too. Even though admittedly, commands like "/SEE" and "/ Subsec" work, too, there is no downside, and besides, with the recent improvements in the tagging framework, implementation cost is negligible.
* test skipping of initial hyphens and minus signs in automatic tags;schwarze2020-03-215-6/+42
| | | | related to tags.c rev. 1.30
* Split tagging into a validation part including prioritizationschwarze2020-03-136-2/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in tag.{h,c} and {mdoc,man}_validate.c and into a formatting part including command line argument checking in term_tag.{h,c}, html.c, and {mdoc|man}_{term|html}.c. Immediate functional benefits include: * Improved prioritization of automatic tags for .Em and .Sy. * Avoiding bogus automatic tags when .Em, .Fn, or .Sy are explicitly tagged. * Explicit tagging of .Er and .Fl now works in HTML output. * Automatic tagging of .IP and .TP now works in HTML output. But mainly, this patch provides clean earth to build further improvements on. Technical changes: * Main program: Write a tag file for ASCII and UTF-8 output only. * All formatters: There is no more need to delay writing the tags. * mdoc(7)+man(7) formatters: No more need for elaborate syntax tree inspection. * HTML formatter: If available, use the "string" attribute as the tag. * HTML formatter: New function to write permalinks, to reduce code duplication. Style cleanup in the vicinity while here: * mdoc(7) terminal formatter: To set up bold font for children, defer to termp_bold_pre() rather than calling term_fontpush() manually. * mdoc(7) terminal formatter: Garbage collect some duplicate functions. * mdoc(7) HTML formatter: Unify <code> handling, delete redundant functions. * Where possible, use switch statements rather than if cascades. * Get rid of some more Yoda notation. The necessity for such changes was first discussed with kn@, but i didn't bother him with a request to review the resulting -673/+782 line patch.
* Messages of the -Wbase level now print STYLE:. Since thisschwarze2017-07-0413-22/+23
| | | | | | | | causes horrible churn anyway, profit of the opportunity to stop excessive testing, such that this is hopefully the last instance of such churn. Consistently use OpenBSD RCS tags, blank .Os, blank fourth .TH argument, and Mdocdate like everywhere else. Use -Ios=OpenBSD for platform-independent predictable output.
* cope with changes in BASE messagesschwarze2017-06-251-2/+3
|
* churn related to the new style message about RCS idsschwarze2017-06-171-0/+1
|
* churn caused by the new Mdocdate messages, no easy way to avoid this :(schwarze2017-06-111-0/+1
|
* style message about missing blank before trailing delimiter;schwarze2017-06-104-6/+7
| | | | inspired by mdoclint(1), and jmc@ considers it useful
* Macro argument quoting does not prevent recognition of punctuationschwarze2017-05-304-2/+102
| | | | | | | | | | | 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 allschwarze2017-03-081-2/+1
| | | | | | 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.
* first batch of -T markdown testsschwarze2017-03-054-1/+45
|
* inevitable churn caused by the section title changeschwarze2014-08-263-3/+3
|
* Improve and test the messages about empty macros,schwarze2014-07-024-2/+28
| | | | in particular reporting the macro names involved.
* fix -Tman font handling for:schwarze2012-07-093-2/+21
| | | | | .Ad .Ar .Cd .Cm .Dv .Em .Er .Ev .Fa .Fl .Fn .Fo .Ft .Ic .In .Lk .Li .Ms .Mt .Nm .Pa .Sx .Sy .Tn .Va .Vt
* after several improvements to -Tman went in,schwarze2012-07-073-0/+28
enable lots of related regression tests