aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc.7
Commit message (Collapse)AuthorAgeFilesLines
* LIBRARY can also occur in section 9.Kristaps Dzonsons2010-05-151-3/+3
| | | | | | All manual sections (unknown, 3p, 3f, etc.) correctly handled by -mdoc. Useful warning printed if unknown manual section. Checking for manual sections (e.g., LIBRARY) checks only first character, so 3p, 3f, etc. are free.
* Documented EOS buffered spaces and added `]'.Kristaps Dzonsons2010-05-151-4/+12
|
* Backed out check for `Ex' manual sec (ok schwarze@, joerg@), in turn backing ↵Kristaps Dzonsons2010-05-141-2/+3
| | | | out check_msec() and deps.
* "Warn on unknown argument for .At and print it like [new] groff." (patch by ↵Kristaps Dzonsons2010-05-141-1/+7
| | | | | | | Joerg Sonnenberger, ed. Kristaps) Keep short-log of commits in index.sgml. Document compatibility with new/old groff in mdoc.7.
* Finish initial documentation of the Bl lists.Kristaps Dzonsons2010-05-141-1/+40
|
* Re-addition of cleaned-up list documentation in mdoc.7.Kristaps Dzonsons2010-05-141-55/+69
|
* Added documentation bits.Kristaps Dzonsons2010-05-141-2/+5
|
* Put the eos-checker into libmandoc.h.Kristaps Dzonsons2010-05-121-1/+7
| | | | Added bits in mdoc.7 and man.7 about EOS spacing.
* End of sentence, end of line for mdoc.7.Kristaps Dzonsons2010-05-121-145/+196
|
* mdoc_atosec -> mdoc_str2sec (consistent with str2 being different from a2).Kristaps Dzonsons2010-05-121-15/+15
| | | | | Changed ordering of sections (EXIT STATUS moved around), argued for by Ulrich Sporlein. Fixed mdoc_str2sec not to use weird structure.
* Adding initial mailing list section to homepage.Kristaps Dzonsons2010-05-081-2/+2
|
* Note that whitespace is really only the space character.Kristaps Dzonsons2010-05-081-2/+3
|
* Strip trailing, unescaped whitespace from free-form, non-literal lines (like ↵Kristaps Dzonsons2010-05-081-16/+6
| | | | groff).
* De-chunking of text removed from parsers. This is a significant change (and ↵Kristaps Dzonsons2010-05-071-6/+2
| | | | | | I don't really like it), but it's what groff does. Distinction of ARGS_PHRASE and ARGS_PPHRASE in backend (not yet used).
* As per Jason McIntyre's heartful urgings, do away with '.' separators ↵Kristaps Dzonsons2010-04-131-161/+4
| | | | | | between logical sections. Change email address to BSD.lv one (this is not an academic project...)
* Added some clarifying bits to mdoc.7 regarding GNU troff, mandoc, and ↵Kristaps Dzonsons2010-04-071-43/+55
| | | | Heirloom troff. Bits on Heirloom troff suggested from private communication with Gunnar Ritter (maintainer of Heirloom troff) (Heirloom uses BSD-4.4 mdoc files, from which historic groff -mdoc descends).
* Allowing `Cd' to be in section 9 (noted by Joerg Sonnenberger).Kristaps Dzonsons2010-04-071-2/+2
|
* Breaking mdoc.7's multiline examples into sets of D1. A few errors found ↵Kristaps Dzonsons2010-04-071-130/+68
| | | | here and there.
* Removed warning for `Er' when not used in certain sections (pointed out by ↵Kristaps Dzonsons2010-04-061-2/+2
| | | | Joerg Sonnenberger).
* Note on `Fl' documented in mdoc.7.Kristaps Dzonsons2010-04-061-3/+5
|
* Fix mdoc bug found by Claus Assmann: `Pf' should be callable.Kristaps Dzonsons2010-04-061-3/+3
|
* Macro types enum-ated (enum mdoct) (for easier debugging in gdb of "tok" ↵Kristaps Dzonsons2010-03-311-2/+9
| | | | | | | values). Initial check-in of Ingo Schwarze's patch for Xo/Xc handling (in blocks ifdef'd "UGLY"). Put Oc-close-Op parts into UGLY ifdef blocks.
* Fixed misspelt "Loongson" (noted by Ingo Schwarze).Kristaps Dzonsons2010-03-261-3/+3
|
* Added Longsoon architecture (thanks Jason McIntyre, Ingo Schwarze).Kristaps Dzonsons2010-03-211-2/+3
|
* Macro documentation for `Xr'.Kristaps Dzonsons2010-02-171-3/+34
| | | | | Re-added macros following `Vt' (lost somehow?). Removed `Xr' <3 stipulations.
* Added `Vt' double-type documentation.Kristaps Dzonsons2010-01-301-7/+34
|
* Fix white-space issues found by mandoc's better white-space finder.Kristaps Dzonsons2010-01-071-23/+23
| | | | Fixed bogus `\\' escapes in some manuals.
* Noted non-accepted comment syntax (thanks Joerg Sonnenberger).VERSION_1_9_15-pre1Kristaps Dzonsons2010-01-011-1/+5
|
* Issue of `Pa' put to rest by Jason McIntyre. Noted in COMPATIBILITY.Kristaps Dzonsons2010-01-011-6/+80
|
* Documented `Fl' in mdoc.7.Kristaps Dzonsons2010-01-011-2/+24
| | | | Backed out stipulation that `Fl ""' is ignored: this is not the case in !OpenBSD groffs.
* More clarification in manuals. Added per-OUTPUT section in mandoc.1.Kristaps Dzonsons2009-11-161-6/+6
|
* Basically re-wrote -Tascii font handling: instead of incrementers forKristaps Dzonsons2009-11-121-6/+25
| | | | | | | | | bold and underline, we use a stack (no cascading, no double-font-mode). Font modes with \f only affect the current stack point, as documented in mdoc.7 and man.7. While -mdoc stacks fonts with embedded macros, -man replaces them (the stack is always size 1). This works for all invocations in supported systems' manual corpora to date. It doesn't support groff's insanity with line-scoped \f as documented in mdoc.7.
* Documented \s and cleaned up \f documentation in mdoc.7, man.7.Kristaps Dzonsons2009-11-091-5/+32
| | | | -Thtml now using a2roffdeco().
* -Tascii now correctly ignores \s clauses.Kristaps Dzonsons2009-11-061-4/+5
|
* Correct support for `\fX' font modes in -Tascii.Kristaps Dzonsons2009-11-051-5/+7
|
* Copied over and modified manual structure from man.7.Kristaps Dzonsons2009-11-021-32/+179
|
* Added mandoc_a2time() for proper date conversion.Kristaps Dzonsons2009-11-021-22/+11
| | | | | Fitted TH and Dd handlers to use mandoc_a2time(). Documented date syntax for -man, fixed documentation for -mdoc.
* Patch on DragonFly BSD syntax (thanks Sascha Wildner).Kristaps Dzonsons2009-10-311-3/+3
| | | | Noted inclusion into DragonFly BSD (thanks Sascha Wildner).
* Full `%U' support.Kristaps Dzonsons2009-10-261-3/+16
| | | | | | | `Lk' display fixed. Renamed arg2xxxx as a2xxxx for consistency. Renamed print_foot to print_man_foot for consistency. Removed default printing of `~' when `Lk' not provided (not sure where I got that from).
* Added `%U' to -mdoc (doesn't render in a nice way yet).Kristaps Dzonsons2009-10-241-2/+7
|
* Typo in mdoc.7 fixed (thanks to Joerg Sonnenberger).Kristaps Dzonsons2009-10-221-2/+2
|
* Groff-compatibility fix (Ds) (noted by Joerg Sonnenberger).Kristaps Dzonsons2009-10-221-3/+3
|
* More updates to mdoc.7.Kristaps Dzonsons2009-10-201-23/+452
|
* Continued work on mdoc.7.Kristaps Dzonsons2009-10-191-12/+175
| | | | Noted buffer overwrite bug in -Thtml -mdoc (will fix later).
* Fixed -mdoc -Thtml with -item lists not to default-indent when width isn't ↵Kristaps Dzonsons2009-10-191-225/+421
| | | | | | specified. Many more cleanups to mdoc.7 (ongoing completion and documentation of all macros).
* Beginning of mdoc.7 full-reference in place.Kristaps Dzonsons2009-10-191-18/+265
|
* Fix in syntax of scaling widths in mdoc.7.Kristaps Dzonsons2009-10-181-2/+2
|
* Fixed typo in Makefile.Kristaps Dzonsons2009-10-181-2/+63
| | | | Added initial scaling-units section in mdoc.7.
* Compat fix in mdoc.7 (joerg@netbsd.org).Kristaps Dzonsons2009-09-281-4/+4
|
* Synchronised man.7, mdoc.7, mdoc.template manual structure.Kristaps Dzonsons2009-08-201-1/+2
|