Package Information
- Last Updated
- Minimum Typst Version
- 0.12.0
- Authors
- Marco Kaufmann
- Categories
- text
1. Get the package
Download the package using the TPIX CLI:
tpix get @preview/siddhi-syntax:0.1.02. Import in your Typst file
Add this to your .typ file:
#import "@preview/siddhi-syntax:0.1.0": *This package adds support for syntax highlighting Siddhi source code in Typst.
How to use
Add global support to the raw black.
#import "@preview/siddhi-syntax:0.1.0": init-siddhi
#show: init-siddhi
```siddhi
@App:name("HelloWorldApp")
@source(type = 'http', receiver.url = "http://0.0.0.0:8006/cargo", @map(type = 'json'))
define stream CargoStream (weight int);
```