aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/roff.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-12-28 10:51:03 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-12-28 10:51:03 +0000
commit79e37cdd7920997b204cf36aa45b387db8bc02ff (patch)
tree00a06351a5961ddbe5c00fa54b7f5ceaafbddf73 /roff.h
parenta629f7c1e6958d7f3fd35692d5c0df8697a743a0 (diff)
downloadmandoc-79e37cdd7920997b204cf36aa45b387db8bc02ff.tar.gz
mandoc-79e37cdd7920997b204cf36aa45b387db8bc02ff.tar.zst
mandoc-79e37cdd7920997b204cf36aa45b387db8bc02ff.zip
Initial tbl framework. Parse point is in libroff, which keeps a
reference to a current tbl parse and routes ALL text into the tbl parse after stripping reserved words and making block-level pre-processing (e.g., `ig'). This is consistent with an analysis of embedded `TS/TE' in manuals with sprinkled -mdoc, roff, and -man macros. Fact of a parse is exposed to main.c by a return value (ROFF_TBL), which will trigger main.c to add a foreign parsed body to the -mdoc or -man parse stream. This interface isn't in yet, but will follow the parse-text functions in both libraries. I put this login in main.c because I don't want libroff calling directly into libmdoc or libman. As a consequence, a parsed row can be pushed directly into any -mdoc or -man context (put a `Bd -literal -offset indent' into a `TE/TS' block to see why this is necessary). It will then absorb formatting cues in the front-ends. A note on naming. I decided on libroff.h instead of tbl.h because this is purely within the roff layer. Separate tbl implementations will need, then, to interface with libroff. This is "how it should be" because tbl is tightly linked with roff in terms of `ds' and other formatting macros, as well as, of course, special characters and other roffisms.
Diffstat (limited to 'roff.h')
-rw-r--r--roff.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/roff.h b/roff.h
index 3624308f..96cea243 100644
--- a/roff.h
+++ b/roff.h
@@ -1,4 +1,4 @@
-/* $Id: roff.h,v 1.19 2010/12/01 15:09:01 kristaps Exp $ */
+/* $Id: roff.h,v 1.20 2010/12/28 10:51:03 kristaps Exp $ */
/*
* Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -24,6 +24,7 @@ enum rofferr {
ROFF_REPARSE, /* re-run main parser on the result */
ROFF_SO, /* include another file */
ROFF_IGN, /* ignore current line */
+ ROFF_TBL, /* a table row was successfully parsed */
ROFF_ERR /* badness: puke and stop */
};