typst-workshop/codebeispiele/codly-highlights.typ

13 lines
355 B
Typst

#import "/globals.typ": *
#figure(caption: [Highlights in codly])[
#codly(highlights: (
(line: 1, fill: blue, label: <code:codly-highlights:psvm>),
(line: 2, start: 3, end: 13, fill: red, label: <code:codly-highlights:sout>),
))
```java
public static void main(String[] args) {
System.out.println("Hello Cyberweek");
}
```
]<code:codly-highlights>