diff options
| -rw-r--r-- | docs/example-pages/examples.json | 8 | ||||
| -rw-r--r-- | examples/example-async-support/page.toml | 2 | ||||
| -rw-r--r-- | examples/example-help/page.toml | 2 | ||||
| -rw-r--r-- | examples/full-todolist/page.toml | 2 |
4 files changed, 8 insertions, 6 deletions
diff --git a/docs/example-pages/examples.json b/docs/example-pages/examples.json index 02b63d1..f669af7 100644 --- a/docs/example-pages/examples.json +++ b/docs/example-pages/examples.json @@ -38,7 +38,8 @@ "desc": "Example Async Runtime Support\n", "tags": [ "async", - "tokio" + "await", + "#[chain]" ], "files": [ "src/main.rs", @@ -169,7 +170,7 @@ "category": "ux", "desc": "Example Help\n", "tags": [ - "#[helper]" + "#[help]" ], "files": [ "src/main.rs", @@ -300,7 +301,8 @@ "desc": "This is a complete example project that demonstrates how to develop a todo list application using Mingling\n", "tags": [ "todolist", - "CRUD" + "CRUD", + "cliché example" ], "files": [ "src/main.rs", diff --git a/examples/example-async-support/page.toml b/examples/example-async-support/page.toml index a54ff04..e193a2b 100644 --- a/examples/example-async-support/page.toml +++ b/examples/example-async-support/page.toml @@ -6,5 +6,5 @@ category = "runtime" desc = """ Example Async Runtime Support """ -tags = ["async", "tokio"] +tags = ["async", "await", "#[chain]"] files = ["src/main.rs", "Cargo.toml"] diff --git a/examples/example-help/page.toml b/examples/example-help/page.toml index 38e3632..aa74e6e 100644 --- a/examples/example-help/page.toml +++ b/examples/example-help/page.toml @@ -6,5 +6,5 @@ category = "ux" desc = """ Example Help """ -tags = ["#[helper]"] +tags = ["#[help]"] files = ["src/main.rs", "Cargo.toml"] diff --git a/examples/full-todolist/page.toml b/examples/full-todolist/page.toml index 9bdc7f1..002fbef 100644 --- a/examples/full-todolist/page.toml +++ b/examples/full-todolist/page.toml @@ -6,5 +6,5 @@ category = "full" desc = """ This is a complete example project that demonstrates how to develop a todo list application using Mingling """ -tags = ["todolist", "CRUD"] +tags = ["todolist", "CRUD", "cliché example"] files = ["src/main.rs", "src/todolist.rs", "src/help.rs", "Cargo.toml"] |
