Typster.CompileError exception (Typster v0.7.2)

Copy Markdown View Source

Exception raised when Typst compilation fails.

This exception is raised by the bang (!) versions of rendering functions when compilation or rendering fails.

Examples

try do
  Typster.render_pdf!("invalid typst syntax")
rescue
  e in Typster.CompileError ->
    IO.puts("Compilation failed: " <> e.message)
end