Compare commits

..

No commits in common. "6f502f2e18778be6dc1a6c45ea927a98aef56d38" and "b8a84b14308901690078b71bc300755ecafd3c4e" have entirely different histories.

6 changed files with 11 additions and 11 deletions

View File

@ -1,8 +1,5 @@
# Changelog
## [v0.1.0] - 2024-10-02
- prepared for publication in Typst Universe
## [v0.0.2] - 2024-06-15
### Added
- `width` parameter to `schema.render` for easier integration

View File

@ -31,11 +31,14 @@ It is based on the [homonymous Python script](https://git.kb28.ch/HEL/rivet/)
*Click on the example image to jump to the code.*
## Usage
For more information, see the [manual](manual.pdf)
For 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à !
To use this package, simply import `schema` [src/lib.typ](src/lib.typ) and call `schema.load` to parse a schema description. Then use `schema.render` to render it, et voilà !
```typ
#import "@preview/rivet:0.1.0": schema
#import "src/lib.typ": schema
#let doc = schema.load("path/to/schema.yaml")
#schema.render(doc)
```
```
## Installing
> TODO

Binary file not shown.

View File

@ -53,7 +53,7 @@ This is a port of the #link("https://git.kb28.ch/HEL/rivet")[homonymous Python s
Simply import `schema` from #link("src/lib.typ") and call `schema.load` to parse a schema description. Then use `schema.render` to render it, et voilà !
#pad(left: 1em)[```typ
#import "@preview/rivet:0.1.0": schema
#import "src/lib.typ": schema
#let doc = schema.load("path/to/schema.yaml")
#schema.render(doc)
```]

View File

@ -1,4 +1,4 @@
#let version = version(0,1,0)
#let version = version((0,0,2))
#import "config.typ"
#import "schema.typ"

View File

@ -1,6 +1,6 @@
[package]
name = "rivet"
version = "0.1.0"
version = "0.0.2"
compiler = "0.11.0"
repository = "https://git.kb28.ch/HEL/rivet-typst"
entrypoint = "src/lib.typ"
@ -11,4 +11,4 @@ categories = [ "visualization" ]
license = "Apache-2.0"
description = "Register / Instruction Visualizer & Explainer Tool with Typst, using CeTZ"
keywords = [ "assembly", "instruction", "binary" ]
exclude = [ "gallery", "gallery.bash", "docs" ]
exclude = [ "/gallery/*" ]