chore: import upstream snapshot with attribution
Enforce Pull-Request Rules / check (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 12:19:24 +08:00
commit dbe3ade0dc
449 changed files with 71828 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
# Module: Hello World
The `helloworld` module is one of the default modules of the MagicMirror². It is a simple way to display a static text on the mirror.
For configuration options, please check the [MagicMirror² documentation](https://docs.magicmirror.builders/modules/helloworld.html).
+14
View File
@@ -0,0 +1,14 @@
Module.register("helloworld", {
// Default module config.
defaults: {
text: "Hello World!"
},
getTemplate () {
return "helloworld.njk";
},
getTemplateData () {
return this.config;
}
});
+5
View File
@@ -0,0 +1,5 @@
<!--
Use ` | safe` to allow html tags within the text string.
https://mozilla.github.io/nunjucks/templating.html#autoescaping
-->
<div>{{ text | safe }}</div>