view v html   =>   text
v   input view

Html takes a view v and returns a text string which displays that view in HTML format, including the full sub-view structure.

Example:
set v [view {A B} def {a 1 b 2 c 5 b 3 b 4}]

view $v group A G | html
AG
0a
B
01
1b
B
02
13
24
2c
B
05

(html is defined in Ratcl)