mirror of
https://github.com/typst/typst
synced 2025-05-15 17:45:27 +08:00
24 lines
265 B
Typst
24 lines
265 B
Typst
// Test strong toggle.
|
|
|
|
---
|
|
// Basic.
|
|
*Strong!*
|
|
|
|
// Inside of words.
|
|
Partly str*ength*ened.
|
|
|
|
// Scoped to body.
|
|
#rect[*Scoped] to body.
|
|
|
|
---
|
|
#let strong = emph
|
|
*Emph*
|
|
|
|
#let strong() = "Bye"
|
|
*, *!
|
|
|
|
#let strong = 123
|
|
|
|
// Error: 1-2 expected function, found integer
|
|
*
|