mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
15 lines
258 B
Typst
15 lines
258 B
Typst
// Test code highlighting with custom syntaxes.
|
|
|
|
---
|
|
#set page(width: 180pt)
|
|
#set text(6pt)
|
|
#set raw(syntaxes: "/files/SExpressions.sublime-syntax")
|
|
|
|
```sexp
|
|
(defun factorial (x)
|
|
(if (zerop x)
|
|
; with a comment
|
|
1
|
|
(* x (factorial (- x 1)))))
|
|
```
|