TypstDocumentation

cbor

Reads structured data from a CBOR file.

The file must contain a valid CBOR serialization. Mappings will be converted into Typst dictionaries, and sequences will be converted into Typst arrays. Strings and booleans will be converted into the Typst equivalents, null-values (null, ~ or empty ``) will be converted into none, and numbers will be converted to floats or integers depending on whether they are whole numbers.

Parameters
Question mark

cbor() -> any

path
str
RequiredPositional
Question mark

Path to a CBOR file.

Definitions
Question mark

decode

Reads structured data from CBOR bytes.

cbor.decode() -> any

data
bytes
RequiredPositional
Question mark

cbor data.

encode

Encode structured data into CBOR bytes.

cbor.encode(
any
) -> bytes

value
any
RequiredPositional
Question mark

Value to be encoded.