mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
16 lines
242 B
JavaScript
16 lines
242 B
JavaScript
var marko_template = require("marko/html").t(__filename);
|
|
|
|
module.exports = marko_template;
|
|
|
|
function render(data, out) {
|
|
out.w("<div></div>");
|
|
}
|
|
|
|
marko_template._ = render;
|
|
|
|
marko_template.meta = {
|
|
deps: [
|
|
"./foo"
|
|
]
|
|
};
|