c

codegds

@preview

Syntax highlighting support for the GDScript programming language.

v0.1.0
MIT

Package Information

Last Updated
Minimum Typst Version
0.13.0
Categories
text

1. Get the package

Download the package using the TPIX CLI:

tpix get @preview/codegds:0.1.0

2. Import in your Typst file

Add this to your .typ file:

#import "@preview/codegds:0.1.0": *

Version History

0.1.00.13.0
ae2e270d5ac3...

codegds

GDscript syntax highlighting for Typst.

Installation

#import "@preview/codegds:0.1.0": gdscript-syntax
#set raw(syntaxes: gdscript-syntax)

```gdscript
func process_items(items: Array) -> void:
	# Check if the array is empty
	if items.is_empty():
		print("No items to process")
		return
	
	# Process each item
	for item in items:
		print("Processing: ", item)
```

Credits