s

siddhi-syntax

@preview

Syntax highlighting support for Siddhi

v0.1.0
MIT

Package Information

Last Updated
Minimum Typst Version
0.12.0
Categories
text

1. Get the package

Download the package using the TPIX CLI:

tpix get @preview/siddhi-syntax:0.1.0

2. Import in your Typst file

Add this to your .typ file:

#import "@preview/siddhi-syntax:0.1.0": *

Version History

0.1.00.12.0
b19daa466b52...

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);
```