hyper-literate/pkgs/scribble-pkgs/scribble-test/tests/scribble/docs/table.scrbl
Matthew Flatt 0fd78b8ca8 scribble/base: add #:{column,row,cell}-properties arguments to tabular
The new arguments greatly simplify adding properties such as alignment
and (HTML) background colors to table cells. For example, to make a
table with 'right alignment for the left-hand column, 'center alignment
for the second column, and 'left alignment for all remaining columns:

 (tabular cells
          #:sep (hspace 1)
          #:column-properties '(right center left))

Also, make `color-property` and `background-color-property` recognized
as table-cell style properties.

Finally, implement horizontal alignment for text rendering.

original commit: 316fc0dbf5e26061245d815c992cc54d9738aa79
2014-03-25 14:23:22 -06:00

21 lines
696 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")))