hyper-literate/scribble-test/tests/scribble/docs/table.scrbl
Matthew Flatt e0a14fa28d tabular: fix insertion of separator before 'cont
Use 'cont before a 'cont cell instead of adding a separator.
2015-08-04 09:44:36 -06:00

25 lines
835 B
Racket

#lang scribble/manual
@(tabular #:column-properties (list 'left 'center 'right)
#:sep "-"
(list (list "A" "B" "C" "D")
(list "apple" "banana" "coconut" "donut")))
@(tabular #:cell-properties (list (list 'right 'center 'left)
(list))
#:sep "-"
(list (list "A" "B" "C" "D")
(list "apple" "banana" "coconut" "donut")
(list "a" "b" "c" "d")))
@(tabular #:column-properties (list '() '() 'left)
#:cell-properties (list (list 'right 'center '()))
#:sep "-"
(list (list "A" "B" "C" "D")
(list "apple" "banana" "coconut" "donut")))
@(tabular #:sep "-"
(list (list "A" 'cont "C" 'cont 'cont)
(list "apple" "banana" "coconut" "donut" "eclair")))