diff --git a/server/modules/rendering/html-tyclipso/definition.yml b/server/modules/rendering/html-tyclipso/definition.yml new file mode 100644 index 00000000..2b280e8f --- /dev/null +++ b/server/modules/rendering/html-tyclipso/definition.yml @@ -0,0 +1,10 @@ +key: htmlTyclipso +title: Post-Processor for tyclipso theme +description: Prepares html for the tyclipso theme +author: tyclipso +icon: mdi-auto-fix +enabledDefault: true +dependsOn: htmlCore +step: post +order: 100 +props: {} diff --git a/server/modules/rendering/html-tyclipso/renderer.js b/server/modules/rendering/html-tyclipso/renderer.js new file mode 100644 index 00000000..d05658ea --- /dev/null +++ b/server/modules/rendering/html-tyclipso/renderer.js @@ -0,0 +1,5 @@ +module.exports = { + async init(input, config) { + return input + } +}