mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
9 lines
217 B
JavaScript
9 lines
217 B
JavaScript
function macro_greeting(name, age, out, renderBody) {
|
|
out.w("Hello " +
|
|
marko_escapeXml(name));
|
|
}
|
|
|
|
macro_greeting("Frank", 10, out, function renderBody(out) {
|
|
out.w("This is the body passed to the macro");
|
|
});
|