Basic setup

This commit is contained in:
Stefan Imhoff
2021-04-28 18:07:37 +02:00
commit 6bdc7366b7
36 changed files with 22222 additions and 0 deletions

10
src/utils/shortcodes.js Normal file
View File

@@ -0,0 +1,10 @@
const outdent = require('outdent')({ newline: ' ' });
module.exports = {
test: function () {
const html = outdent`
<div>Hello, World</div>`;
return html;
},
};