#import "@preview/tidy:0.4.0" #import "src/lib.typ" #let mod = tidy.parse-module.with( scope: (jumble: lib), preamble: "#import jumble: *;" ) #let sha-doc = mod( read("src/sha.typ"), name: "sha" ) #tidy.show-module(sha-doc) #let md-doc = mod( read("src/md.typ"), name: "md" ) #tidy.show-module(md-doc) #let misc-doc = mod( read("src/misc.typ"), name: "misc" ) #tidy.show-module(misc-doc) #let base-doc = mod( read("src/base.typ"), name: "base" ) #tidy.show-module(base-doc) #pagebreak() #let utils-doc = mod( read("src/utils.typ"), name: "utils" ) #tidy.show-module(utils-doc)