From 54c538ec48bd98e82f666d6cb7e19fb551c1adb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Asbj=C3=B8rn=20Ulsberg?= Date: Mon, 19 Sep 2022 11:33:48 +0200 Subject: [PATCH] DX-1846: Fix links --- tests/full/index.md | 7 +++---- tests/full/link.md | 2 -- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/tests/full/index.md b/tests/full/index.md index c00d99310..2d1541e7a 100644 --- a/tests/full/index.md +++ b/tests/full/index.md @@ -10,11 +10,10 @@ Text can be **bold**, _italic_, or ~~strikethrough~~. * [Absolute URL to page]({{ page.url | absolute_url }}). * [Relative URL to CSS file]({{ "/test.css" | relative_url }}). * [External absolute full link](https://www.wikipedia.org) -* [External protocol relative link](//www.wikipedia.org) * [Internal absolute full link]({{ site.url }}) -* [Internal explicit relative link](./page1) -* [Internal implicit relative link](page1) -* [Internal absolute link](/page1) +* [Internal explicit relative link](./link) +* [Internal implicit relative link](link) +* [Internal absolute link](/link) There should be whitespace between paragraphs. diff --git a/tests/full/link.md b/tests/full/link.md index 1abc157c7..07cec0cf9 100644 --- a/tests/full/link.md +++ b/tests/full/link.md @@ -4,9 +4,7 @@ description: For testing HTML --- * This file is linked from [index][index]. -* [This is an absolute URL to this page][absolute]. * [And here's a relative URL to this page][relative] [index]: / -[absolute]: {{ page.url | absolute_url }} [relative]: {{ "/link" | relative_url }}