diff options
author | Jacob Fenton <jacob+github@dfenton.xyz> | 2024-04-01 08:08:48 -0500 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-04-03 15:59:40 +0100 |
commit | e50ea0c8f53c74919fb61a07895383b69fb3f2ae (patch) | |
tree | e29a724b664ee58175f21379444be00f32b206e6 | |
parent | f529be158c97086e122e058bda398f85859d2be1 (diff) | |
download | tour-e50ea0c8f53c74919fb61a07895383b69fb3f2ae.tar.gz tour-e50ea0c8f53c74919fb61a07895383b69fb3f2ae.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 3948ba5..3f0ec4a 100644 --- a/src/tour.gleam +++ b/src/tour.gleam @@ -655,21 +655,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: [ |