mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
14 lines
177 B
JavaScript
14 lines
177 B
JavaScript
if (true) {
|
|
if (!(!data.url)) {
|
|
out.w("<a" +
|
|
marko_attr("href", data.url) +
|
|
">");
|
|
}
|
|
|
|
out.w("Hello World");
|
|
|
|
if (!(!data.url)) {
|
|
out.w("</a>");
|
|
}
|
|
}
|