mirror of
https://github.com/kogakure/website-11ty-hamburg.stefanimhoff.de.git
synced 2026-02-03 12:15:28 +00:00
11 lines
178 B
JavaScript
11 lines
178 B
JavaScript
const outdent = require('outdent')({ newline: ' ' });
|
|
|
|
module.exports = {
|
|
test: function () {
|
|
const html = outdent`
|
|
<div>Hello, World</div>`;
|
|
|
|
return html;
|
|
},
|
|
};
|