diff options
author | Hayleigh Thompson <me@hayleigh.dev> | 2024-02-21 13:58:05 +0000 |
---|---|---|
committer | Hayleigh Thompson <me@hayleigh.dev> | 2024-02-21 13:58:05 +0000 |
commit | 6214b7bc87627f01ce5e776d136002fa5402544e (patch) | |
tree | 2ebfadb6de465002b4a6a04474140a976eec3c2a | |
parent | b562382e7b4f9a4809863d4fe9a32a36467dbac9 (diff) | |
download | lustre-6214b7bc87627f01ce5e776d136002fa5402544e.tar.gz lustre-6214b7bc87627f01ce5e776d136002fa5402544e.zip |
:wrench: Add external pages to generated docs.
-rw-r--r-- | gleam.toml | 26 |
1 files changed, 24 insertions, 2 deletions
@@ -1,14 +1,16 @@ name = "lustre" version = "3.1.3" +gleam = ">= 0.33.0" description = "An Elm-inspired framework for building single page applications and server-rendered components in Gleam!" -licences = ["MIT"] repository = { type = "github", user = "lustre-labs", repo = "lustre" } +licences = ["MIT"] + links = [ { title = "Website", href = "https://lustre.build" }, + { title = "Examples", href = "https://github.com/lustre-labs/lustre/tree/main/examples" }, { title = "Sponsor", href = "https://github.com/sponsors/hayleigh-dot-dev" }, ] -gleam = ">= 0.33.0" internal_modules = [ "lustre/cli", @@ -17,6 +19,26 @@ internal_modules = [ "lustre/internals/*", ] +[documentation] +pages = [ + { title = "CLI reference", path = "#", source = "" }, + { title = " ", path = "#", source = "" }, + { title = "Quickstart guide", path = "guide/01-quickstart.html", source = "./docs/guide/01-quickstart.md" }, + { title = "Managing state", path = "#", source = "" }, + { title = "Side effects", path = "#", source = "" }, + { title = "Server-side rendering", path = "#", source = "" }, + { title = "Components", path = "#", source = "" }, + { title = "Server components", path = "#", source = "" }, + { title = " ", path = "#", source = "" }, + { title = "Using with Wisp", path = "#", source = "" }, + { title = "Using with Glen", path = "#", source = "" }, + { title = "Using with Mist", path = "#", source = "" }, + { title = " ", path = "#", source = "" }, + { title = "For Elm developers", path = "#", source = "" }, + { title = "For React developers", path = "#", source = "" }, + { title = "For LiveView developers", path = "#", source = "" }, +] + [dependencies] argv = "~> 1.0" filepath = "~> 0.1" |