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 }}