Just `curious` what
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>`;
};
Highlight lines 1 & 3
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;
}
lineNumbers
1function myFunction() {
2 return true;
3}
table
function myFunction() {
return true;
}
lineNumbers + table
1
2
3
|
function myFunction() {
return true;
}
|