Create components¶
Components are .mjs modules that transform slide HTML during the build.
Structure¶
Place your component in components/ at the root of your talk. The file exports a function that receives the HTML data and returns modified HTML.
export default (data) => {
let newData = data;
[...newData.matchAll(/!test\((.*)/g)].forEach((match) => {
newData = newData.replace(match[0], `Test: ${match[1]}`);
});
return newData;
};
Usage in slides¶
The component replaces !test(hello world) with Test: hello world.
Manage components via CLI¶
slidesk component search qrcode
slidesk component install @gouz/qrcode
slidesk component push my-component
See manage addons.