Bundle-PBib
view release on metacpan or search on metacpan
docs/Intro.html view on Meta::CPAN
<!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>Intro - The PBib Input Document Format and Styles</title>
<link rel="stylesheet" href="Active.css" type="text/css" />
<link rev="made" href="mailto:" />
</head>
<body>
<table border="0" width="100%" cellspacing="0" cellpadding="3">
<tr><td class="block" valign="middle">
docs/Overview.html view on Meta::CPAN
<!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>Overview - Something like BibTeX, but written in perl and designed to be extensible in three dimensions: bibliographic databases</title>
<link rel="stylesheet" href="Active.css" type="text/css" />
<link rev="made" href="mailto:" />
</head>
<body>
<table border="0" width="100%" cellspacing="0" cellpadding="3">
<tr><td class="block" valign="middle">
lib/PBib/Document/XHTML.pm view on Meta::CPAN
# --*-Perl-*--
# $Id: XHTML.pm 25 2005-09-17 21:45:54Z tandler $
#
=head1 NAME
PBib::Document::XHTML - XHTML documents
=head1 SYNOPSIS
use PBib::Document;
my $doc = new PBib::Document(
'filename' => 'sample.xhtml',
'mode' => 'r',
);
print $doc->filename();
$doc->close();
=head1 DESCRIPTION
Provide an interface to XHTML for PBib.
=cut
package PBib::Document::XHTML;
use strict;
use warnings;
# use English;
# for debug:
use Data::Dumper;
( run in 0.278 second using v1.01-cache-2.11-cpan-87723dcf8b7 )