mirror of
https://github.com/typst/typst
synced 2025-05-13 20:46:23 +08:00
19 lines
210 B
XML
19 lines
210 B
XML
// Test bracketed function calls.
|
|
|
|
---
|
|
// Whitespace insignificant.
|
|
#[f], #[ f ]
|
|
|
|
// Body and no body.
|
|
#[f][#[f]]
|
|
|
|
// Tight functions.
|
|
#[f]#[f]
|
|
|
|
// Multi-paragraph body.
|
|
#[align right][
|
|
First
|
|
|
|
Second
|
|
]
|