We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 612453d commit a4daab7Copy full SHA for a4daab7
crates/render-pdf/src/typst_context/context.rs
@@ -73,8 +73,8 @@ impl World for TypstContext {
73
}
74
75
76
- fn file(&self, _id: FileId) -> typst::diag::FileResult<Bytes> {
77
- panic!("File access not implemented in this minimal example")
+ fn file(&self, id: FileId) -> typst::diag::FileResult<Bytes> {
+ panic!("Tried to access non-virtual file with ID: {:?}", id);
78
79
80
fn font(&self, index: usize) -> Option<Font> {
0 commit comments