bkyk8rc3zvpnsf5inmcqq4n3k98cv6hj-my-site-hyper-literate-git.test.suzanne.soy-0.0.1

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

table.scrbl (835B)


      1 #lang scribble/manual
      2 
      3 @(tabular #:column-properties (list 'left 'center 'right)
      4           #:sep "-"
      5           (list (list "A" "B" "C" "D")
      6                 (list "apple" "banana" "coconut" "donut")))
      7 
      8 
      9 @(tabular #:cell-properties (list (list 'right 'center 'left)
     10                                   (list))
     11           #:sep "-"
     12           (list (list "A" "B" "C" "D")
     13                 (list "apple" "banana" "coconut" "donut")
     14                 (list "a" "b" "c" "d")))
     15 
     16 @(tabular #:column-properties (list '() '() 'left)
     17           #:cell-properties (list (list 'right 'center '()))
     18           #:sep "-"
     19           (list (list "A" "B" "C" "D")
     20                 (list "apple" "banana" "coconut" "donut")))
     21 
     22 @(tabular #:sep "-"
     23           (list (list "A" 'cont "C" 'cont 'cont)
     24                 (list "apple" "banana" "coconut" "donut" "eclair")))