1=head1 NAME 2 3Test HTML Rendering 4 5=head1 SYNOPSIS 6 7 use My::Module; 8 9 my $module = My::Module->new(); 10 11=head1 DESCRIPTION 12 13This is the description. 14 15 Here is a verbatim section. 16 17This is some more regular text. 18 19Here is some B<bold> text, some I<italic> and something that looks 20like an E<lt>htmlE<gt> tag. This is some C<$code($arg1)>. 21 22This C<text contains embedded B<bold> and I<italic> tags>. These can 23be nested, allowing B<bold and I<bold E<amp> italic> text>. The module also 24supports the extended B<< syntax >> and permits I<< nested tags E<amp> 25other B<<< cool >>> stuff >> 26 27=head1 METHODS =E<gt> OTHER STUFF 28 29Here is a list of methods 30 31=head2 new() 32 33Constructor method. Accepts the following config options: 34 35=over 4 36 37=item foo 38 39The foo item. 40 41=item bar 42 43The bar item. 44 45=over 4 46 47This is a list within a list 48 49=item * 50 51The wiz item. 52 53=item * 54 55The waz item. 56 57=back 58 59=item baz 60 61The baz item. 62 63=over 4 64 65=item * 66 67A correct list within a list 68 69=item * Boomerang 70 71=back 72 73=back 74 75Title on the same line as the =item + * bullets 76 77=over 78 79=item * C<Black> Cat 80 81=item * Sat S<I<on> the> 82 83=item * MatE<lt>!E<gt> 84 85=back 86 87Title on the same line as the =item + numerical bullets 88 89=over 90 91=item 1 92 93Cat 94 95=item 2 96 97Sat 98 99=item 3 100 101Mat 102 103=back 104 105Numbered list with text on the same line 106 107=over 108 109=item 1 Cat 110 111=item 2 Sat 112 113=item 3 Mat 114 115=back 116 117No bullets, no title 118 119=over 120 121=item 122 123Cat 124 125=item 126 127Sat 128 129=item 130 131Mat 132 133=back 134 135=head2 old() 136 137Destructor method 138 139=head1 TESTING FOR AND BEGIN 140 141=for html <br /> 142<p> 143blah blah 144</p> 145 146intermediate text 147 148=begin html 149 150<more> 151HTML 152</more> 153 154some text 155 156=end html 157 158=head1 TESTING URLs hyperlinking 159 160This is an href link1: http://example.com 161 162This is an href link2: http://example.com/foo/bar.html 163 164This is an email link: mailto:foo@bar.com 165 166 This is a link in a verbatim block <a href="http://perl.org"> Perl </a> 167 168=head1 SEE ALSO 169 170See also L<Test Page 2|htmlescp>, the L<Your::Module> and L<Their::Module> 171manpages and the other interesting file F</usr/local/my/module/rocks> 172as well. 173 174=cut 175