34 lines
525 B
Plaintext
34 lines
525 B
Plaintext
#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 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) |