diff options
author | Jacob Fenton <jacob+github@dfenton.xyz> | 2024-04-01 08:08:48 -0500 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-04-01 14:32:48 +0100 |
commit | 5383e5b1eb7c713ed65b4ded250e91cef9d8c398 (patch) | |
tree | c11c40d9e44a677a932e230f1502c00d9c76654a | |
parent | 4d346ace41edd8a11fd90aa2928f801eea9b93a2 (diff) | |
download | tour-5383e5b1eb7c713ed65b4ded250e91cef9d8c398.tar.gz tour-5383e5b1eb7c713ed65b4ded250e91cef9d8c398.zip |
Format.
-rw-r--r-- | src/tour.gleam | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/tour.gleam b/src/tour.gleam index 5de58a7..719f52f 100644 --- a/src/tour.gleam +++ b/src/tour.gleam @@ -624,21 +624,21 @@ fn lesson_page_render(lesson: Lesson) -> String { lesson.text, )), ]), - h("nav", [#("class", "prev-next")], [ - navlink("Back", lesson.previous), - text(" — "), - h("a", [#("href", path_table_of_contents)], [text("Contents")]), - text(" — "), - navlink("Next", lesson.next), - ]), + h("nav", [#("class", "prev-next")], [ + navlink("Back", lesson.previous), + text(" — "), + h("a", [#("href", path_table_of_contents)], [text("Contents")]), + text(" — "), + navlink("Next", lesson.next), ]), ]), - h("section", [#("id", "right")], [ - h("section", [#("id", "editor")], [ - h("div", [#("id", "editor-target")], []), - ]), - h("aside", [#("id", "output")], []), + ]), + h("section", [#("id", "right")], [ + h("section", [#("id", "editor")], [ + h("div", [#("id", "editor-target")], []), ]), + h("aside", [#("id", "output")], []), + ]), ], scripts: ScriptConfig( body: [ |