diff options
| author | Michael Färber <01mf02@gmail.com> | 2024-12-20 10:48:17 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-20 09:48:17 +0000 |
| commit | df4e6715cf31817878d73286d2d4b1ea1b7afdbb (patch) | |
| tree | 6265db40fc7907454a608120f0b3a20cfce825e1 /tests/ref | |
| parent | db06dbf9763d6c610d1f7a267597ecdad309048a (diff) | |
HTML tests (#5594)
Co-authored-by: Laurenz <laurmaedje@gmail.com>
Diffstat (limited to 'tests/ref')
| -rw-r--r-- | tests/ref/html/link-basic.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/ref/html/link-basic.html b/tests/ref/html/link-basic.html new file mode 100644 index 00000000..1f4e02e1 --- /dev/null +++ b/tests/ref/html/link-basic.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + </head> + <body> + <p> + <a href="https://example.com/">https://example.com/</a> + </p> + <p> + <a href="https://typst.org/">Some text text text</a> + </p> + <p> + This link appears <a href="https://google.com/">in the middle of</a> a paragraph. + </p> + <p> + Contact <a href="mailto:hi@typst.app">hi@typst.app</a> or call <a href="tel:123">123</a> for more information. + </p> + </body> +</html>
\ No newline at end of file |
