30 lines
842 B
Plaintext
30 lines
842 B
Plaintext
// Link without body.
|
|
#link("https://example.com/")
|
|
|
|
// Link with body.
|
|
#link("https://typst.app/")[Some text text text]
|
|
|
|
// With line break.
|
|
This link appears #link("https://google.com/")[in the middle of] a paragraph.
|
|
|
|
// Prefix is trimmed.
|
|
Contact #link("mailto:hi@typst.app") or call #link("tel:123") for more information.
|
|
|
|
---
|
|
// Styled with underline and color.
|
|
#let link(url, body) = link(url, text(fill: rgb("283663"), underline(body)))
|
|
You could also make the #link("https://html5zombo.com/")[link look way more typical.]
|
|
|
|
---
|
|
// Transformed link.
|
|
#set page(height: 60pt)
|
|
#let link = link("https://typst.app/")[LINK]
|
|
My cool #move(x: 0.7cm, y: 0.7cm, rotate(10deg, scale(200%, link)))
|
|
|
|
---
|
|
// Link containing a block.
|
|
#link("https://example.com/", block[
|
|
My cool rhino
|
|
#move(x: 10pt, image("../../res/rhino.png", width: 1cm))
|
|
])
|