The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

HTML::FormatNroff - Format HTML as nroff man page

SYNOPSIS

 require HTML::FormatNroff;
 $html = parse_htmlfile("test.html");
 $format_nroff = new HTML::FormatNroff(name => 'trial', 
                                       project => 'MyProject');
 print $formatter->format($html);

DESCRIPTION

The HTML::FormatNroff is a formatter that outputs nroff source for the nroff text processor, using man macros, and tbl commands for table processing.

The result of using the formatter must be processed as follows, when directing output to the screen (assume output is in the file "text.nroff"):

    tbl -TX text.nroff | nroff -man | col

If the output is to be printed, on an laser printer for example, a command similar to the following must be used:

    tbl -TX text.nroff | nroff -man -Tlj | lpr

Meta tags may be placed in the HTML so that portions of the HTML will be ignored and not processed. Content between the tags

 <META NAME="nroff-control" CONTENT="ignore_start">
 <META NAME="nroff-control" CONTENT="ignore_end">

will be ignored. In the BODY META is not supported, but DIV may be used as follows:

 <DIV TYPE="NROFF_IGNORE">
 </DIV>

In both the META and DIV uses, case is ignored.

METHODS

$format_nroff->dt_start();

Start a definition term <DT>, using a temporary indent and vertical space.

$format_nroff->dd_start();

Start a data definition, <DD>, using a temporary indent.

$format_nroff->configure($arg);

Configure the nroff formatter, setting the attributes passed in the $arg attribute (hash reference)

$format_nroff->begin();

Begin HTML formatting.

$format_nroff->end();

End HTML formatting.

$format_nroff->html_start();

Process <HTML> start tag. Create the man page header based on saved attributes, unless the attribute $format_nroff->{'man_header'} is not set. This generates the following header:

 .TH "name" section "date" "project"  

$format_nroff->font_start($font);

Start the font specified by the $font character (e.g. B, or I). The font is remembered so nested fonts are handled correctly.

$format_nroff->font_end();

End the current font, returning to the previous one.

$format_nroff->i_start();

Process <I> tag.

$format_nroff->i_end();

Process </I> tag.

$format_nroff->b_start();

Process <B> tag.

$format_nroff->b_end();

Process </B> tag.

$format_nroff->table_start($node);

Process <TABLE>, start table processing. $node is the current html_parser node.

    Pass on the $format_nroff->{'page_width'} to FormatTableNroff

$format_nroff->tr_start($node);

Process <TR>, add table row.

$format_nroff->tr_end();

End the table row </TR>

$format_nroff->a_start();

<A> is ignored.

$format_nroff->a_end();

</A> is ignored.

$format_nroff->td_start($node);

Process <TD>, add table cell

$format_nroff->td_end();

Process </TD>, end table cell

$format_nroff->th_start($node);

Process <TH>, add table header cell

$format_nroff->th_end();

Process </TH>, end table header cell

$format_nroff->table_end();

Process </TABLE>. Actually output entire table.

$format_nroff->p_start();

Process <P>.

$format_nroff->p_end();

Process </P> by doing nothing.

$format_nroff->goto_lm()

goto_lm does nothing.

$format_nroff->br_start();

Process <BR>.

$format_nroff->hr_start();

Process <HR>

$format_nroff->header_start();

Process <H?> simply using .SH

$format_nroff->header_end();

Process </H?> simply outputing newline

$format_nroff->out($text);

Output text.

$format_nroff->pre_out($pre);

Output <PRE> text.

$format_nroff->nl($cnt);

Output newline.

$format_nroff->adjust_lm($indent);

adjust indent (left margin)

$format_nroff->adjust_rm();

not used.

$format_nroff->bullet($tag);

output the bullet, using a temporary indent and the $tag

$format_nroff->textflow($node);

Output text or add it to table if currently inside a table If centered add .ce unless inside a table, if underlined add .ul, if the left margin is adjusted use a .ti for every new line.

$format_nroff->blockquote_start($node);

Start <BLOCKQUOTE>, by making a new paragraph, and indenting.

$format_nroff->blockquote_end($node);

</BLOCKQUOTE>, by ending indent, and making a new paragraph

$format_nroff->div_start($node);

Process DIV

 <DIV TYPE="NROFF_IGNORE">
    is used to ignore all subsequent content until the next
 </DIV>

 This allows HTML to be used which is not to be converted to HTML
(such as navigation controls). Case is ignored in the type.

In the header you probably should use <META NAME="nroff-control" CONTENT="ignore_start"> is used to ignore all subsequent content until the next <META NAME="nroff-control" CONTENT="ignore_end">

$format_nroff->meta_start($node);

Process <META> tag.

 <META NAME="nroff-control" CONTENT="ignore_start">
    is used to ignore all subsequent content until the next
 <META NAME="nroff-control" CONTENT="ignore_end">

 This allows HTML to be used which is not to be converted to HTML
(such as navigation controls). Case is ignored.

Strictly speaking META is only allowed in the HTML HEAD, so this META. In the body, you should use:

    <DIV TYPE="NROFF_IGNORE">
    </DIV>

SEE ALSO

HTML::Formatter, HTML::FormatTableCell, HTML::FormatTableCellNroff, HTML::FormatTableNroff, HTML::FormatTableRow, HTML::FormatTableRowNroff

COPYRIGHT

Copyright (c) 1997 Frederick Hirsch. All rights reserved.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

Frederick Hirsch <f.hirsch@opengroup.org>