File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,34 @@ The parser for each format is in its own module:
40
40
=(dsv table-preset)= contains the code to draw pseudo-graphic tables in the
41
41
terminal.
42
42
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
+
43
71
*** Tests
44
72
Tests are in =tests= directory. They are written using SRFI-61.
45
73
You can’t perform that action at this time.
0 commit comments