3 Commits

Author SHA1 Message Date
dd6d38a282 fixed README example usage 2025-05-03 00:54:38 +02:00
6140cff3c5 updated CHANGELOG.md 2025-05-03 00:39:03 +02:00
1be1dccb6b bumped version in README 2025-05-03 00:35:35 +02:00
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# Changelog
## [v0.3.0] - WIP
## [v0.3.0] - 2025-05-03
- updated CeTZ to 0.3.4
- updated to Typst 0.13.1
- updated Tidy to 0.4.2

View File

@ -35,7 +35,7 @@ For more information, see the [manual](manual.pdf)
To use this package, simply import `schema` from [rivet](https://typst.app/universe/package/rivet) and call `schema.load` to parse a schema description. Then use `schema.render` to render it, et voilà !
```typ
#import "@preview/rivet:0.2.0": schema
#let doc = schema.load("path/to/schema.yaml")
#import "@preview/rivet:0.3.0": schema
#let doc = schema.load(yaml("path/to/schema.yaml"))
#schema.render(doc)
```