From 9a2c15c818b62620afacf03a31e2f4ea9f671550 Mon Sep 17 00:00:00 2001 From: Spencer Bliven Date: Tue, 18 Jun 2019 17:16:43 +0200 Subject: [PATCH] Add link tests to siteinfo.md --- siteinfo.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/siteinfo.md b/siteinfo.md index 0317634..1fb0992 100644 --- a/siteinfo.md +++ b/siteinfo.md @@ -16,4 +16,17 @@ permalink: siteinfo.html
{{site|inspect}}
-{% endcomment %} \ No newline at end of file +{% endcomment %} + +## Testing links + +All of these links should be valid: + +| Code | Result | +| ---- | ------ | +| `{%raw%}[Normal link to result](/merlin6/introduction.html){%endraw%}` | [Normal link to result](/merlin6/introduction.html) | +| `{%raw%}[Normal link to source](/pages/merlin6/introduction.md){%endraw%}` | [Normal link to source](/pages/merlin6/introduction.md) | +| `{%raw%}[Escaped link to result]({{"/merlin6/introduction.md"}}){%endraw%}` | [Escaped link to result]({{"/merlin6/introduction.md"}}) | +| `{%raw%}[Liquid Link]({% link pages/merlin6/introduction.md %}){%endraw%}` | [Liquid Link]({% link pages/merlin6/introduction.md %}) | +| `{%raw%}![PSI Logo](/images/psi-logo.png){%endraw%}` | ![PSI Logo](/images/psi-logo.png) | +| `{%raw%}![Escaped PSI Logo]({{ "/images/psi-logo.png" }}){%endraw%}` | ![PSI Logo from liquid]({{ "/images/psi-logo.png" }}) |