-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinkTest.html
More file actions
30 lines (30 loc) · 1.29 KB
/
LinkTest.html
File metadata and controls
30 lines (30 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<h1 id="first-heading">First Heading</h1>
<ul>
<li>Wikilink: <a href="WikiLink.html">WikiLink</a></li>
<li>Link with no angle brackets or extension: <a
href="./Postcards.html">Postcards</a> -> Does not have extension</li>
<li>Link with angle brackets, no extension: <a
href="./index.html">index</a> -> No extension</li>
<li>Link with no angle brackets, yes extension: <a
href="./Stores.html">Stores</a> -> Has extension</li>
<li>Link with angle brackets and extension: <a
href="./Brands.html">Brands</a> -> Has extension</li>
</ul>
<h2 id="second-heading---test-cases-with-spaces-in-names">Second heading
- test cases with spaces in names</h2>
<ul>
<li>Wiki Link: [[Wiki Link]]</li>
<li>Link with no angle brackets or extension (Post Cards): <a
href="./Post%20Cards.html">Post Cards</a> -> No extension</li>
<li>Link with angle brackets, no extension (in dex): <a
href="./in%20dex.html">in dex</a> -> No extension</li>
<li>Link with no angle brackets, yes extension (Sto res): <a
href="./Sto%20res.html">Sto res</a> -> Has extension</li>
<li>Link with angle brackets and extension (Bra nds): <a
href="./Bra%20nds.html">Bra nds</a> -> Has extension</li>
</ul>
<h2 id="other">Other</h2>
<ul>
<li>Different Extension: <a href="./foobar.xyz">foobar</a></li>
</ul>
<p>EOF</p>