EBook-EPUB-Lite
view release on metacpan or search on metacpan
$epub->encrypt_file(catfile(qw/t compat.t/), 'test.t', 'text/plain');
$epub->pack_zip($target);
return $target;
}
sub html_wrap {
my ($body, $title) = @_;
$title ||= "No title";
my $xhtml = <<"XHTML";
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>$title</title>
<link href="stylesheet.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div id="page">
$body
</div>
</body>
$epub->encrypt_file(catfile(qw/t epub.t/), 'test.t', 'text/plain');
$epub->pack_zip($target);
return $target;
}
sub html_wrap {
my ($body, $title) = @_;
$title ||= "No title";
my $xhtml = <<"XHTML";
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>$title</title>
<link href="stylesheet.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div id="page">
$body
</div>
</body>
( run in 1.252 second using v1.01-cache-2.11-cpan-49f99fa48dc )