chore: use preview import paths in examples

This commit is contained in:
2026-06-15 13:10:59 +02:00
parent 861c25026b
commit 6cc3cfcd00
9 changed files with 15 additions and 14 deletions

Binary file not shown.

View File

@@ -1,6 +1,6 @@
#import "../src/lib.typ": schema, config #import "@preview/rivet:0.3.1": schema, config
#let example = schema.load("/gallery/example1.yaml") #let example = schema.load(yaml("./example1.yaml"))
#schema.render(example, config: config.config( #schema.render(example, config: config.config(
full-page: true full-page: true
)) ))

Binary file not shown.

View File

@@ -1,6 +1,6 @@
#import "../src/lib.typ": schema, config #import "@preview/rivet:0.3.1": schema, config
#let example = schema.load("/gallery/example2.yaml") #let example = schema.load(yaml("./example2.yaml"))
#schema.render(example, config: config.blueprint( #schema.render(example, config: config.blueprint(
full-page: true, full-page: true,
left-labels: true left-labels: true

Binary file not shown.

View File

@@ -1,6 +1,6 @@
#import "../src/lib.typ": schema, config #import "@preview/rivet:0.3.1": schema, config
#let example = schema.load("/gallery/example1.yaml") #let example = schema.load(yaml("/gallery/example1.yaml"))
//#schema.render(example) //#schema.render(example)
= Chapter 1 = Chapter 1

View File

@@ -1,14 +1,14 @@
#import "../../src/lib.typ": * #import "@preview/rivet:0.3.1": *
#let conf = config.config( #let conf = config.config(
full-page: true, full-page: true,
left-labels: true left-labels: true
) )
#let alu = schema.load("/gallery/riscv/alu_instr.yaml") #let alu = schema.load(yaml("./alu_instr.yaml"))
#schema.render(alu, config: conf) #schema.render(alu, config: conf)
#let branch = schema.load("/gallery/riscv/branch_instr.yaml") #let branch = schema.load(yaml("./branch_instr.yaml"))
#schema.render(branch, config: conf) #schema.render(branch, config: conf)
#let mem = schema.load("/gallery/riscv/mem_instr.yaml") #let mem = schema.load(yaml("./mem_instr.yaml"))
#schema.render(mem, config: conf) #schema.render(mem, config: conf)

Binary file not shown.

View File

@@ -1,16 +1,17 @@
#import "../src/lib.typ": * #import "@preview/rivet:0.3.1": *
#let test-yaml = schema.load("/gallery/test.yaml") #let test-yaml = schema.load(yaml("./test.yaml"))
#schema.render(test-yaml, config: config.config( #schema.render(test-yaml, config: config.config(
full-page: true full-page: true
)) ))
#let test-json = schema.load("/gallery/test.json") #let test-json = schema.load(json("./test.json"))
#schema.render(test-json, config: config.blueprint( #schema.render(test-json, config: config.blueprint(
full-page: true full-page: true
)) ))
#let test-xml = schema.load("/gallery/test.xml") #let test-xml-raw = schema.xml-loader.parse(xml("./test.xml").first())
#let test-xml = schema.load(test-xml-raw)
#schema.render(test-xml, config: config.dark( #schema.render(test-xml, config: config.dark(
full-page: true full-page: true
)) ))