From 6e9db161e8acd17b059f4d17137892884a557ef0 Mon Sep 17 00:00:00 2001 From: pixel Date: Thu, 7 Oct 2021 19:33:23 +0200 Subject: [PATCH] tbl: add page (#6594) --- pages/common/tbl.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/tbl.md diff --git a/pages/common/tbl.md b/pages/common/tbl.md new file mode 100644 index 000000000..fef188166 --- /dev/null +++ b/pages/common/tbl.md @@ -0,0 +1,24 @@ +# tbl + +> Format tables for `troff`. +> More information: . + +- Format tables for `troff` and print it to stdout: + +`cat {{path/to/file.troff}} | tbl` + +- Format tables for `troff` in "compatibility mode": + +`cat {{path/to/file.troff}} | tbl -C` + +- Format tables for `troff` from a file: + +`tbl {{path/to/file.troff}}` + +- Mark the beginning of a table ("Table Start"): + +`.TS` + +- Mark the end of the table ("Table End"): + +`.TE`