(define simple-html-table (lambda (column-widht list-of-rows) (let ((gmap (curry-generalized map)) (td-width (modify-element td 'width (as-string column-widht)))) (table 'border 1 (tbody (gmap (compose tr (gmap td-width)) list-of-rows))))))