Add link tests to siteinfo.md

This commit is contained in:
Spencer Bliven
2019-06-18 17:16:43 +02:00
parent 67c58d2488
commit 9a2c15c818

View File

@ -16,4 +16,17 @@ permalink: siteinfo.html
<pre>{{site|inspect}}</pre>
{% endcomment %}
{% 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" }}) |