-- look at bsd.lv tbl(1)
- from kristaps@ Fri, 11 Sep 2009 17:10:53 +0200
- also look at the mail from Thomas Klausner wiz at NetBSD
- on Wed, 2 Jun 2010 11:01:29 +0200
- joerg@ has patches for this somewhere...
+- implement basic non-parametric .de to support e.g. sox(1)
+ .de SP
+ .if t .sp .5
+ .if n .sp
+ ..
+ .de EX
+ .SP
+ .nf
+ .ft CW
+ ..
+ .de EE
+ .ft R
+ .SP
+ .fi
+ ..
+ reported by naddy@ Sat, 16 Oct 2010 23:51:57 +0200
+
+- implement parametric .de to support e.g.
+ /usr/xenocara/lib/libXxf86vm/manXF86VM.man
+ .de ZN
+ .ie t \fB\^\\$1\^\fR\\$2
+ .el \fI\^\\$1\^\fP\\$2
+ ..
+ .ZN -lXxf86vm
+
+- clean up escape sequence handling, creating three classes:
+ (1) fully implemented, or parsed and ignored without loss of content
+ (2) unimplemented, potentially causing loss of content
+ or serious mangling of formatting (e.g. \n) -> ERROR
+ see textproc/mgdiff(1) for nice examples
+ (3) undefined, just output the character -> perhaps WARNING
+
+- port OpenBSD tbl integration bsd.lv, probably cleaning it up