<(common.inc.plp)><: my $textinc = 'data/unicode-sampler/unicode.txt'; Html({ title => "unicode sampler", version => '2.0', stylesheet => [qw'light dark mono red'], data => $textinc, }); open my $source, '<', $textinc or die "Could not open text at $textinc: $!\n"; local $/ = "\n\n"; my $top = readline $source; my ($title, $hr, $intro) = split /\n(\H)$1+\n/, $top, 2; say "

$title

"; say '
';
print $intro;

while (my $p = readline $source) {
	EscapeHTML($p);
	$p =~ s{ \A (\N+:) \n\Z }{

$1

}x; print $p; } say "
\n";