Expression | Value | (define td1
(modify-element td
'bgcolor (rgb-color-list red)
'width 50))
(table 'border 5
(map (compose tr (gmap td1)) rows)) | This | is | first | row | This | is | second | row | This | is | third | row | This | is | fourth | row |
| (define ol1
(modify-element ol 'type "A"))
(ol1
(map
(compose li as-string)
(number-interval 1 10))) | - 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
| (define ul1
(modify-element ul 'type "square"))
(ul1
(map
(compose li as-string)
(number-interval 1 10))) | |
| | Examples of element modification using the function modify-element. |