summaryrefslogtreecommitdiff
path: root/tests/typ/text
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-10-05 12:49:39 +0200
committerLaurenz <laurmaedje@gmail.com>2022-10-05 12:49:39 +0200
commitec884ec1d85f6e1d7868db3e82d572579cc5d345 (patch)
tree92819f3a31abd6fdcd6b01adcd367bad344bef13 /tests/typ/text
parent5a8534a395b500a25cbc46ee15ec031c8231de59 (diff)
Refactor syntax module
Diffstat (limited to 'tests/typ/text')
-rw-r--r--tests/typ/text/link.typ4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/typ/text/link.typ b/tests/typ/text/link.typ
index 99b380f0..8e777956 100644
--- a/tests/typ/text/link.typ
+++ b/tests/typ/text/link.typ
@@ -5,7 +5,7 @@
https://example.com/
// Link with body.
-#link("https://typst.app/")[Some text text text]
+#link("https://typst.org/")[Some text text text]
// With line break.
This link appears #link("https://google.com/")[in the middle of] a paragraph.
@@ -31,7 +31,7 @@ You could also make the
// Transformed link.
#set page(height: 60pt)
#set link(underline: false)
-#let mylink = link("https://typst.app/")[LINK]
+#let mylink = link("https://typst.org/")[LINK]
My cool #move(dx: 0.7cm, dy: 0.7cm, rotate(10deg, scale(200%, mylink)))
---