We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6bac85 commit 4c827c0Copy full SHA for 4c827c0
mkdocs.metta
@@ -45,11 +45,12 @@
45
(= (document-module $title $mod)
46
(let $_ (import! &self $mod)
47
(let $helps (collapse (help-md-space! (module-space-no-deps (mod-space! $mod))))
48
- (let $text (foldl-atom $helps "" $r $i (format-args "{}{}" ($r $i)))
+ (let $sorted (sort-strings $helps)
49
+ (let $text (foldl-atom $sorted "" $r $i (format-args "{}{}" ($r $i)))
50
(let $md (format-args "# {}\n{}" ($title $text))
51
(let $path (format-args "./docs/{}.md" ($mod))
52
(let $file (file-open! $path "wct")
- (file-write! $file $md) )))))))
53
+ (file-write! $file $md) ))))))))
54
55
!(document-module "Standard library" corelib)
56
!(document-module "File Input/Output" fileio)
0 commit comments