summaryrefslogtreecommitdiff
path: root/usr.bin/mandoc/roff.c
AgeCommit message (Expand)Author
2018-10-25Implement the \f(CW and \f(CR (constant width font) escape sequencesIngo Schwarze
2018-08-25Rudimentary implementation of the roff(7) .char (output glyphIngo Schwarze
2018-08-24Rudimentary implementation of the roff(7) .while request.Ingo Schwarze
2018-08-23Implement the roff(7) .shift and .return requests,Ingo Schwarze
2018-08-21Implement the \\$@ escape sequence (insert all macro arguments,Ingo Schwarze
2018-08-20Expand \n(.$ (the number of macro arguments) right in roff_userdef(),Ingo Schwarze
2018-08-19Mostly complete implementation of the 'c' (character available)Ingo Schwarze
2018-08-18Bugfix: When a line ends with '\ \"', don't strip the trailing spaceIngo Schwarze
2018-08-18support the highly surprising escape sequence \# (line continuationIngo Schwarze
2018-08-18implement the GNU man-ext .SY/.YS (synopsis block) macro in man,Ingo Schwarze
2018-08-16implement the GNU man-ext .TQ macro in man(7),Ingo Schwarze
2018-08-16Implement the \*(.T predefined string (interpolate device name)Ingo Schwarze
2018-08-10Implement the roff(7) .nop (no operation) request.Ingo Schwarze
2018-08-01After rewriting the parse buffer from scratch, we also have to resetIngo Schwarze
2018-04-11preserve comments before .Dd when converting mdoc(7) to man(7)Ingo Schwarze
2018-04-10Two new low-level roff(7) features:Ingo Schwarze
2018-04-09When accessing an undefined number register, define it to be zero, likeIngo Schwarze
2018-04-09Using an undefined string or macro will cause it to be defined as empty.Ingo Schwarze
2017-07-14The .Dd and .TH macros must interrupt .ce, too;Ingo Schwarze
2017-07-14Explicitly initialize a variable where the compiler is (understandably)Ingo Schwarze
2017-07-13eqn(7) .EQ has to break man(7) next-line scope, or tree corruptionIngo Schwarze
2017-07-08Simplify by creating struct roff_node syntax tree nodes for tbl(7)Ingo Schwarze
2017-07-08fix an assertion failure triggered by .ce in next-line scope;Ingo Schwarze
2017-07-081. Eliminate struct eqn, instead use the existing membersIngo Schwarze
2017-07-04Fix handling of \} on roff request lines.Ingo Schwarze
2017-06-25Add support for the MT and ME mailto macros, used for example in wg(8).Anthony J. Bentley
2017-06-24Split -Wstyle into -Wstyle and the even lower -Wbase, and addIngo Schwarze
2017-06-18Implement appending to standard man(7) and mdoc(7) macros with .am.Ingo Schwarze
2017-06-17style message about duplicate RCS ids; inspired by mdoclintIngo Schwarze
2017-06-17style message about missing RCS ids; inspired by mdoclintIngo Schwarze
2017-06-14Naive implementation of the roff(7) .po (page offset) request.Ingo Schwarze
2017-06-14simple implementation of the roff(7) .als (macro alias) request,Ingo Schwarze
2017-06-14implement the roff(7) d (macro or string defined) conditionalIngo Schwarze
2017-06-14implement roff(7) .rj (right justify) requestIngo Schwarze
2017-06-13Explicitly ignore .br, .ce, and .sp inside tbl(7) text blocks.Ingo Schwarze
2017-06-08Properly reinitialize roffce_node between parses,Ingo Schwarze
2017-06-07Implement the roff(7) .rn (rename macro or string) request.Ingo Schwarze
2017-06-06Minimal implementation of the roff(7) .ce request (center a numberIngo Schwarze
2017-06-04Implement the roff(7) .mc (right margin character) request.Ingo Schwarze
2017-06-04Pure preprocessor implementation of the roff(7) .ec and .eo requestsIngo Schwarze
2017-05-08Line-breaking roff(7) requests also break man(7) next-line scope.Ingo Schwarze
2017-05-08Basic implementation of the roff(7) .ti (temporary indent) request.Ingo Schwarze
2017-05-07Basic implementation of the roff(7) .ta (define tab stops) request.Ingo Schwarze
2017-05-05Move .sp to the roff modules. Enough infrastructure is in placeIngo Schwarze
2017-05-05move .ll to the roff modulesIngo Schwarze
2017-05-05Move handling of the roff(7) .ft request from the man(7)Ingo Schwarze
2017-05-04Parser reorg:Ingo Schwarze
2017-04-29Parser unification: use nice ohashes for all three request and macro tables;Ingo Schwarze
2017-04-24Continue parser unification:Ingo Schwarze
2017-03-09Fix blunder in previous: we must keep the line parse bufferIngo Schwarze