summaryrefslogtreecommitdiffstats
path: root/man_macro.c
Commit message (Expand)AuthorAgeFilesLines
* Reduce the man(7) default global indentation from 7n, which was an oddityIngo Schwarze2023-11-131-1/+1
* Implement the man(7) .MR macro, a 2023 GNU extension.Ingo Schwarze2023-10-241-0/+1
* The .AT, .DT, and .UC macros are allowed inside next-line scopeIngo Schwarze2022-04-271-3/+3
* support for hunting memory leaks;Ingo Schwarze2022-04-141-0/+8
* Do not die on an assertion if an input file contains no sectionIngo Schwarze2022-04-131-2/+3
* Element next-line scopes can nest. Consequently, even when closingIngo Schwarze2020-09-091-5/+7
* In HTML output, man(7) .RS blocks get formatted as <div class="Bd-indent">,Ingo Schwarze2019-01-051-1/+4
* Some high-level block macros have an effect similar to temporarilyIngo Schwarze2019-01-051-1/+3
* Cleanup, no functional change:Ingo Schwarze2018-12-311-1/+1
* For .EX and .EE, set the fill mode parser state directly in theIngo Schwarze2018-12-311-0/+5
* Move parsing of the .nf and .fi (fill mode) requests from the man(7)Ingo Schwarze2018-12-311-10/+3
* Cleanup, minus 15 LOC, no functional change:Ingo Schwarze2018-12-311-2/+0
* Cleanup, no functional change:Ingo Schwarze2018-12-301-1/+1
* Rename mandoc_getarg() to roff_getarg() and pass it the roff parserIngo Schwarze2018-12-211-6/+12
* Cleanup, no functional change:Ingo Schwarze2018-12-141-1/+1
* Almost mechanical diff to remove the "struct mparse *" argumentIngo Schwarze2018-12-141-16/+14
* Major cleanup; may imply minor changes in edge cases of error reporting.Ingo Schwarze2018-12-141-0/+1
* Support nesting of elements with next-line scope.Ingo Schwarze2018-08-261-31/+36
* paragraphs can contain .MT and .UR blocksIngo Schwarze2018-08-181-1/+2
* .RE causes a line break even if .RS is not openIngo Schwarze2018-08-181-0/+6
* end of sentence detection after .ME and .UE, useful for some GNU manualsIngo Schwarze2018-08-181-0/+2
* Two consecutive .SY blocks only get a blank line in betweenIngo Schwarze2018-08-181-1/+8
* implement the GNU man-ext .SY/.YS (synopsis block) macro in man(7),Ingo Schwarze2018-08-181-0/+5
* Remove more pointer arithmetic passing via regions outside the arrayIngo Schwarze2018-08-171-9/+15
* implement the GNU man-ext .TQ macro in man(7),Ingo Schwarze2018-08-161-1/+2
* fix incomplete variable renaming in previous;Ingo Schwarze2018-08-151-1/+1
* support tail arguments on the .ME and .UE macros,Ingo Schwarze2018-08-141-16/+23
* add support for the MT and ME mailto macros, used for example in wg(8);Ingo Schwarze2017-06-251-0/+5
* if .in is used inside the .TP head, it's always relativeIngo Schwarze2017-06-171-1/+1
* Partial support for the \n[an-margin] number register.Ingo Schwarze2017-06-131-1/+14
* Move .sp to the roff modules. Enough infrastructure is in placeIngo Schwarze2017-05-051-3/+1
* move .ll to the roff modulesIngo Schwarze2017-05-051-1/+0
* Move handling of the roff(7) .ft request from the man(7)Ingo Schwarze2017-05-051-2/+1
* Parser reorg:Ingo Schwarze2017-05-041-3/+1
* Continue parser unification:Ingo Schwarze2017-04-241-17/+14
* unify names of AST node flags; no change of cpp outputIngo Schwarze2017-01-101-5/+5
* Delete the redundant "nchild" member of struct roff_node, replacingIngo Schwarze2016-01-081-1/+1
* move man(7) validation into the dedicated validation phase, tooIngo Schwarze2015-10-221-18/+4
* modernize style: "return" is not a functionIngo Schwarze2015-10-061-2/+2
* /* NOTREACHED */ after abort() is silly, delete itIngo Schwarze2015-09-261-1/+0
* Fill mode changes don't break next-line scope in all cases,Ingo Schwarze2015-09-041-2/+2
* Get rid of two empty wrapper functions. No functional change.Ingo Schwarze2015-04-231-2/+1
* Unify trickier node handling functions.Ingo Schwarze2015-04-191-4/+3
* Unify some node handling functions that use TOKEN_NONE.Ingo Schwarze2015-04-191-4/+4
* Unify node handling functions:Ingo Schwarze2015-04-191-6/+8
* Replace the structs mdoc and man by a unified struct roff_man.Ingo Schwarze2015-04-181-8/+8
* Vastly simplify man(7) block unwinding, similar to mdoc_macro.c 1.171.Ingo Schwarze2015-04-031-118/+33
* It turns out the man(7) parser suffers from unintelligible handlingIngo Schwarze2015-04-031-1/+1
* Second step towards parser unification:Ingo Schwarze2015-04-021-17/+16
* First step towards parser unification:Ingo Schwarze2015-04-021-28/+29