mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
14 lines
156 B
JavaScript
14 lines
156 B
JavaScript
out.w("<ul>");
|
|
|
|
forEach(data.colors, function(color) {
|
|
foo();
|
|
|
|
out.w("<li>" +
|
|
marko_escapeXml(color) +
|
|
"</li>");
|
|
|
|
bar();
|
|
});
|
|
|
|
out.w("</ul>");
|