function myFunction() {
return true;
}
let multilineString = `
this is the first line
this is the middle line
this is the last line
`
;
let multilineString = `
this is the first line
this is the middle line
this is the last line
`
;
alert("test");

let multilineString = buildSchema(`
this is the first line
this is the middle line
this is the last line
`
);

alert("test");
module.exports = function({collections}) {
return `<ul>
${collections.post.map((post) => `<li>${ post.data.title }</li>`).join("\n")}
</ul>
`
;
};
module.exports = function({collections}) {
return `<ul>
${collections.post.map((post) => `<li>${ post.data.title }</li>`).join("\n")}
</ul>
`
;
};
function myFunction() {
return true;
}
function myFunction() {
return true;
}