aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix segfault in -Thtml column lists.Kristaps Dzonsons2009-09-224-578/+282
| | | | | | Added some more UTF-8 chars. mandoc_char.7 now has all special characters rendered. Fixed column layout in -Thtml.
* Fixed some characters.Kristaps Dzonsons2009-09-222-17/+69
| | | | Initial push of mandoc_char showing the current character rendering (useful for testing, too).
* Many more characters for HMTL (mostly Greek).Kristaps Dzonsons2009-09-223-51/+52
|
* A few more macros in -Thtml.Kristaps Dzonsons2009-09-214-18/+105
|
* Added chars.h to HEADS.VERSION_1_9_5Kristaps Dzonsons2009-09-211-2/+4
|
* Added html.h to headers that should be distributed.Kristaps Dzonsons2009-09-211-2/+3
|
* Wrong stylesheet in xsl.Kristaps Dzonsons2009-09-211-1/+1
|
* Version: 1.9.5.Kristaps Dzonsons2009-09-211-2/+2
|
* Split html.c into html.h, mdoc_html.c, man_html.c.Kristaps Dzonsons2009-09-215-1691/+1771
|
* Removed man handling in -Thtml (for now).Kristaps Dzonsons2009-09-212-62/+35
| | | | Added some UTF chars to chars.in.
* Fix height of hard-breaks in -Thtml.Kristaps Dzonsons2009-09-212-6/+12
|
* Consolidation of Pp/sp/br/Lp stuff.Kristaps Dzonsons2009-09-212-50/+43
|
* Fix in outopts processing.Kristaps Dzonsons2009-09-211-2/+2
|
* Fixed body/divbody structure of html pages.Kristaps Dzonsons2009-09-216-66/+98
| | | | | | Added example style.css (example.style.css). Enabled using -Thtml to generate manuals in Makefile. Stopped making text manuals for webpage.
* getsubopt() is in unistd.h, not stdlib.h (error in xBSD manuals).Kristaps Dzonsons2009-09-211-1/+2
|
* Lint pass (OpenBSD-alpha). Noops.Kristaps Dzonsons2009-09-211-5/+3
|
* Removed new-born out.{h,c} (not a good idea).Kristaps Dzonsons2009-09-2110-282/+266
| | | | | Removed if 0 for HTML-mode output (why not). Added option -oxxxx for passing options to output devices.
* Added example stylesheet.Kristaps Dzonsons2009-09-212-2/+42
|
* Tentative addition of front-end utility functions (out.h) (not sure if it's ↵Kristaps Dzonsons2009-09-214-240/+546
| | | | | | necessary). More -Thtml installments.
* Using inline-blocks for header and footer (works much better).Kristaps Dzonsons2009-09-201-58/+42
|
* Headers and footers in -Thtml. Various minor additions.Kristaps Dzonsons2009-09-203-31/+264
|
* Bl -column in place for -Thtml.Kristaps Dzonsons2009-09-202-6/+28
|
* Some extra html tags and near-complete Bl: -tag is hopeless (synonym for ↵Kristaps Dzonsons2009-09-204-188/+210
| | | | -hang, now) and -column is still pending.
* Fixed memory leak on close.Kristaps Dzonsons2009-09-202-3/+6
|
* Considerable, wide-ranging improvements to the -Thtml output mode (most ↵Kristaps Dzonsons2009-09-202-104/+169
| | | | especially proper tagging and using `em' instead of `px').
* Consider html fixes, most importantly -tag and -hang (breaks in IE6, ↵Kristaps Dzonsons2009-09-172-97/+445
| | | | apparently).
* Hang lists in html (the hard one first).Kristaps Dzonsons2009-09-172-15/+333
|
* More html.Kristaps Dzonsons2009-09-173-316/+451
| | | | Initial html encodings in chars.in.
* ascii_xxx -> chars_xxx (intended to hold more than just ascii encoding).Kristaps Dzonsons2009-09-179-100/+143
| | | | More html work.
* More updates to html.c.Kristaps Dzonsons2009-09-163-154/+327
| | | | Secretly enabled -Thtml in main.c (obviously not yet documented).
* Lintifications.Kristaps Dzonsons2009-09-164-22/+22
|
* Put closedelim and opendelim right in term_word() (unnecessary extra function).Kristaps Dzonsons2009-09-161-65/+41
|
* Lookup hashes are now static tables, ordered first-level by second ↵Kristaps Dzonsons2009-09-169-176/+63
| | | | character, then randomly along a chain. Improves performance by a small fraction and considerably cleans up hash sources.
* Made tree/term/out() functions return void.Kristaps Dzonsons2009-09-169-105/+723
| | | | Put err() functions back into front-ends (no use making it needlessly complex).
* Removed TERMP_BOLD, TERMP_UNDER, TERMP_STYLE in favour of recursive-friendly ↵Kristaps Dzonsons2009-09-156-314/+131
| | | | | | increments. Cleaned up confusing behaviour of p->flags.
* Version: 1.9.2.VERSION_1_9_2Kristaps Dzonsons2009-09-052-6/+6
| | | | Fixed man.7 syntax error (oops).
* Typo fix (jmc@openbsd.org).Kristaps Dzonsons2009-09-051-3/+3
|
* Added `UC' libman macro (has no effect).Kristaps Dzonsons2009-08-228-22/+38
| | | | | Corrected `UC' and `DT' not to print their arguments. Noted that `UC' and `DT' shouldn't be used.
* Added check for graphable characters in initial-line parse for libman and ↵Kristaps Dzonsons2009-08-222-2/+14
| | | | libmdoc (joerg@netbsd.org).
* Fix of MAN_NEXT when removing next-line dupes.VERSION_1_9_1Kristaps Dzonsons2009-08-211-4/+8
|
* Removed superfluous XXX.Kristaps Dzonsons2009-08-212-5/+3
| | | | Version: 1.9.1.
* `RS' warns if empty body.Kristaps Dzonsons2009-08-211-2/+14
|
* Fixed next-line scoping of `.HP nnn' (has both next-line and on-line in head).Kristaps Dzonsons2009-08-212-8/+17
|
* Fixed `nf' behaviour (had broken with de-chunking).Kristaps Dzonsons2009-08-213-17/+57
| | | | Added warnings if literal context already open/closed.
* Open explicit scope on libman exit now only generates warning.Kristaps Dzonsons2009-08-214-43/+46
| | | | Consecutive ELINE scopes are now pruned (with a warning).
* FreeBSD fix (uqs@spoerlein.net).Kristaps Dzonsons2009-08-211-1/+3
|
* Fixed next-line scope error in libman block macros.Kristaps Dzonsons2009-08-201-3/+6
|
* Fixed (not documented anywhere of course) that `SH' and `SS' in libman have ↵Kristaps Dzonsons2009-08-202-6/+6
| | | | next-line head scope.
* Synchronised man.7, mdoc.7, mdoc.template manual structure.Kristaps Dzonsons2009-08-205-8/+22
|
* Updated manual structure in mdoc.7.Kristaps Dzonsons2009-08-207-250/+282
| | | | | | Synchronised mdoc.template and mdoc.7 manual structure. `Rv' and `Ex' now accept multiple arguments (-std made standalone, terms as children). `Rv' and `Ex' format correctly in -Tascii (plurals, commas, etc.).