(根据建议编辑)
在评估load-gui之后,如何使用Rebol3中的描述提取所有GUI样式?
答案 0 :(得分:1)
,最初的想法:
REBOL []
load-gui
do http://reb4.me/r3/rsp
style-info: collect [
foreach [name style] body-of guie/styles [
keep form name keep style/about
]
]
styles-list: render-each [name about] style-info {<h1><%== name %></h1>^/<p><%== about %></p>^/}
write %styles-list.html styles-list