Streamline table border styles.
This commit is contained in:
parent
4e7fbb2df9
commit
2db2624d21
2 changed files with 8 additions and 1 deletions
|
@ -81,6 +81,8 @@ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
(-tests () "Run self-tests upon startup" (-run-tests?- #t))
|
||||
(-idstats () "Returns information about available member ids" (-action- 'print-idstats))
|
||||
(-genid () "Generates random member id" (-action- 'genid))
|
||||
(-tstyle (style) "Use given table style: debug, ascii, unicode"
|
||||
(*table-border-style* (string->symbol style)))
|
||||
(-gencards (file:cards file:desfires) "Generates brmdoor-compatible card files"
|
||||
(print "TODO: " file:cards " " file:desfires))
|
||||
)
|
||||
|
|
|
@ -48,11 +48,16 @@
|
|||
|
||||
;; Table border styles in visual form
|
||||
(define table-borders-lookup-source
|
||||
'((ascii
|
||||
'((debug
|
||||
"/=,\\"
|
||||
"] |["
|
||||
">-+<"
|
||||
"'~^`")
|
||||
(ascii
|
||||
"+-++"
|
||||
"| ||"
|
||||
"+-++"
|
||||
"+-++")
|
||||
(unicode
|
||||
"┌─┬┐"
|
||||
"│ ││"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue