158 lines
3.0 KiB
Perl
158 lines
3.0 KiB
Perl
#!/usr/bin/perl -w # -*- perl -*-
|
|
|
|
BEGIN {
|
|
require "./t/pod2html-lib.pl";
|
|
}
|
|
|
|
use strict;
|
|
use Test::More tests => 1;
|
|
|
|
convert_n_test("htmllink", "html links");
|
|
|
|
__DATA__
|
|
<?xml version="1.0" ?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>htmllink - Test HTML links</title>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
<link rev="made" href="mailto:[PERLADMIN]" />
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<ul id="index">
|
|
<li><a href="#NAME">NAME</a></li>
|
|
<li><a href="#LINKS">LINKS</a></li>
|
|
<li><a href="#TARGETS">TARGETS</a>
|
|
<ul>
|
|
<li><a href="#section1">section1</a></li>
|
|
<li><a href="#section-2">section 2</a></li>
|
|
<li><a href="#section-three">section three</a></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
|
|
<h1 id="NAME">NAME</h1>
|
|
|
|
<p>htmllink - Test HTML links</p>
|
|
|
|
<h1 id="LINKS">LINKS</h1>
|
|
|
|
<p><a href="#section1">"section1"</a></p>
|
|
|
|
<p><a href="#section-2">"section 2"</a></p>
|
|
|
|
<p><a href="#section-three">"section three"</a></p>
|
|
|
|
<p><a href="#item1">"item1"</a></p>
|
|
|
|
<p><a href="#item-2">"item 2"</a></p>
|
|
|
|
<p><a href="#item-three">"item three"</a></p>
|
|
|
|
<p><a href="#section1">"section1"</a></p>
|
|
|
|
<p><a href="#section-2">"section 2"</a></p>
|
|
|
|
<p><a href="#section-three">"section three"</a></p>
|
|
|
|
<p><a href="#item1">"item1"</a></p>
|
|
|
|
<p><a href="#item-2">"item 2"</a></p>
|
|
|
|
<p><a href="#item-three">"item three"</a></p>
|
|
|
|
<p><a href="#section1">"section1"</a></p>
|
|
|
|
<p><a href="#section-2">"section 2"</a></p>
|
|
|
|
<p><a href="#section-three">"section three"</a></p>
|
|
|
|
<p><a href="#item1">"item1"</a></p>
|
|
|
|
<p><a href="#item-2">"item 2"</a></p>
|
|
|
|
<p><a href="#item-three">"item three"</a></p>
|
|
|
|
<p><a href="#section1">text</a></p>
|
|
|
|
<p><a href="#section-2">text</a></p>
|
|
|
|
<p><a href="#section-three">text</a></p>
|
|
|
|
<p><a href="#item1">text</a></p>
|
|
|
|
<p><a href="#item-2">text</a></p>
|
|
|
|
<p><a href="#item-three">text</a></p>
|
|
|
|
<p><a href="#section1">text</a></p>
|
|
|
|
<p><a href="#section-2">text</a></p>
|
|
|
|
<p><a href="#section-three">text</a></p>
|
|
|
|
<p><a href="#item1">text</a></p>
|
|
|
|
<p><a href="#item-2">text</a></p>
|
|
|
|
<p><a href="#item-three">text</a></p>
|
|
|
|
<p><a href="#section1">text</a></p>
|
|
|
|
<p><a href="#section-2">text</a></p>
|
|
|
|
<p><a href="#section-three">text</a></p>
|
|
|
|
<p><a href="#item1">text</a></p>
|
|
|
|
<p><a href="#item-2">text</a></p>
|
|
|
|
<p><a href="#item-three">text</a></p>
|
|
|
|
<h1 id="TARGETS">TARGETS</h1>
|
|
|
|
<h2 id="section1">section1</h2>
|
|
|
|
<p>This is section one.</p>
|
|
|
|
<h2 id="section-2">section 2</h2>
|
|
|
|
<p>This is section two.</p>
|
|
|
|
<h2 id="section-three">section three</h2>
|
|
|
|
<p>This is section three.</p>
|
|
|
|
<dl>
|
|
|
|
<dt id="item1">item1 </dt>
|
|
<dd>
|
|
|
|
<p>This is item one.</p>
|
|
|
|
</dd>
|
|
<dt id="item-2">item 2 </dt>
|
|
<dd>
|
|
|
|
<p>This is item two.</p>
|
|
|
|
</dd>
|
|
<dt id="item-three">item three </dt>
|
|
<dd>
|
|
|
|
<p>This is item three.</p>
|
|
|
|
</dd>
|
|
</dl>
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|