From d69e9678d2cb297a205ff4a85d91f39df5184bc2 Mon Sep 17 00:00:00 2001 From: skyne98 Date: Sun, 26 Dec 2021 21:49:59 +0100 Subject: [PATCH] feat: add some examples --- modules/core/module.toml | 7 +++++++ modules/core/units/main.md | 5 +++++ modules/hello/units/hello.md | 3 +++ modules/hello/units/world.md | 3 +++ 4 files changed, 18 insertions(+) create mode 100644 modules/core/module.toml create mode 100644 modules/core/units/main.md create mode 100644 modules/hello/units/hello.md create mode 100644 modules/hello/units/world.md diff --git a/modules/core/module.toml b/modules/core/module.toml new file mode 100644 index 0000000..31b3e80 --- /dev/null +++ b/modules/core/module.toml @@ -0,0 +1,7 @@ +name = "core" +title = "Core" +version = "0.0.1" +ruleset = true + +[dependencies] +hello = { version = ">=0.0.1" } diff --git a/modules/core/units/main.md b/modules/core/units/main.md new file mode 100644 index 0000000..a63aca3 --- /dev/null +++ b/modules/core/units/main.md @@ -0,0 +1,5 @@ +# MURS Core + +This is not a real core module/rulebook. It is currently used for testing purposes. + +This is a link to [hello/world](Hello World!); \ No newline at end of file diff --git a/modules/hello/units/hello.md b/modules/hello/units/hello.md new file mode 100644 index 0000000..d2eab91 --- /dev/null +++ b/modules/hello/units/hello.md @@ -0,0 +1,3 @@ +# Hello + +This is a test file that has some basic **formatted** text. \ No newline at end of file diff --git a/modules/hello/units/world.md b/modules/hello/units/world.md new file mode 100644 index 0000000..acdb7fa --- /dev/null +++ b/modules/hello/units/world.md @@ -0,0 +1,3 @@ +# World + +This file has a link to [self/hello](Hello); \ No newline at end of file