Skip to content

Commit a20ddf0

Browse files
ARCHITECTURE.org: Describe table presets
1 parent 64f9416 commit a20ddf0

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

ARCHITECTURE.org

+28
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,34 @@ The parser for each format is in its own module:
4040
=(dsv table-preset)= contains the code to draw pseudo-graphic tables in the
4141
terminal.
4242

43+
**** Table Presets
44+
Table presets are stored in =presets= directory and installed along with
45+
Guile-DSV. The goal is to make the tables easily configurable. The
46+
configuration can be done with a set of table options that control how each
47+
part of a table is rendered in a terminal.
48+
49+
For example, option called =border-top-left= controls which symbol is used for
50+
the top left corner of a table; the option can be shortened to =btl= to make
51+
it easier to specify this parameter in a command line.
52+
53+
Table configuration file is but a Scheme file that contains an associative
54+
list of options like follows:
55+
56+
#+BEGIN_EXAMPLE scheme
57+
((name . "graphic")
58+
(description . "Pseudo-graphic table.")
59+
;; Table border style.
60+
(border-top . "─")
61+
(border-top-left . "┌")
62+
(border-top-right . "┐")
63+
;; ...
64+
(header-column-separator . "┃"))
65+
#+END_EXAMPLE
66+
67+
In configuration files it is recommended to use full-length option names
68+
(e.g. =border-top-left=) instead of shortened versions (e.g. =btl=) to make
69+
the code easier to read.
70+
4371
*** Tests
4472
Tests are in =tests= directory. They are written using SRFI-61.
4573

0 commit comments

Comments
 (0)