Update to podlators 2.3.0
[p5sagit/p5-mst-13.2.git] / cpan / podlators / lib / Pod / Text / Overstrike.pm
CommitLineData
73849855 1# Pod::Text::Overstrike -- Convert POD data to formatted overstrike text
73849855 2#
3# Created by Joe Smith <Joe.Smith@inwap.com> 30-Nov-2000
4# (based on Pod::Text::Color by Russ Allbery <rra@stanford.edu>)
0e4e3f6e 5# Copyright 2000 Joe Smith <Joe.Smith@inwap.com>.
6# Copyright 2001, 2004, 2008 Russ Allbery <rra@stanford.edu>.
73849855 7#
3c014959 8# This program is free software; you may redistribute it and/or modify it
73849855 9# under the same terms as Perl itself.
10#
11# This was written because the output from:
12#
13# pod2text Text.pm > plain.txt; less plain.txt
14#
15# is not as rich as the output from
16#
17# pod2man Text.pm | nroff -man > fancy.txt; less fancy.txt
18#
19# and because both Pod::Text::Color and Pod::Text::Termcap are not device
20# independent.
21
3c014959 22##############################################################################
73849855 23# Modules and declarations
3c014959 24##############################################################################
73849855 25
26package Pod::Text::Overstrike;
27
28require 5.004;
29
30use Pod::Text ();
31
32use strict;
33use vars qw(@ISA $VERSION);
34
35@ISA = qw(Pod::Text);
36
fe61459e 37$VERSION = '2.04';
73849855 38
3c014959 39##############################################################################
73849855 40# Overrides
3c014959 41##############################################################################
73849855 42
43# Make level one headings bold, overridding any existing formatting.
44sub cmd_head1 {
b7ae008f 45 my ($self, $attrs, $text) = @_;
b616daaf 46 $text =~ s/\s+$//;
b7ae008f 47 $text = $self->strip_format ($text);
b616daaf 48 $text =~ s/(.)/$1\b$1/g;
b7ae008f 49 return $self->SUPER::cmd_head1 ($attrs, $text);
73849855 50}
51
52# Make level two headings bold, overriding any existing formatting.
53sub cmd_head2 {
b7ae008f 54 my ($self, $attrs, $text) = @_;
b616daaf 55 $text =~ s/\s+$//;
b7ae008f 56 $text = $self->strip_format ($text);
b616daaf 57 $text =~ s/(.)/$1\b$1/g;
b7ae008f 58 return $self->SUPER::cmd_head2 ($attrs, $text);
73849855 59}
60
61# Make level three headings underscored, overriding any existing formatting.
62sub cmd_head3 {
b7ae008f 63 my ($self, $attrs, $text) = @_;
b616daaf 64 $text =~ s/\s+$//;
b7ae008f 65 $text = $self->strip_format ($text);
b616daaf 66 $text =~ s/(.)/_\b$1/g;
b7ae008f 67 return $self->SUPER::cmd_head3 ($attrs, $text);
b616daaf 68}
69
70# Level four headings look like level three headings.
71sub cmd_head4 {
b7ae008f 72 my ($self, $attrs, $text) = @_;
b616daaf 73 $text =~ s/\s+$//;
b7ae008f 74 $text = $self->strip_format ($text);
b616daaf 75 $text =~ s/(.)/_\b$1/g;
b7ae008f 76 return $self->SUPER::cmd_head4 ($attrs, $text);
b616daaf 77}
78
79# The common code for handling all headers. We have to override to avoid
80# interpolating twice and because we don't want to honor alt.
81sub heading {
b7ae008f 82 my ($self, $text, $indent, $marker) = @_;
b616daaf 83 $self->item ("\n\n") if defined $$self{ITEM};
b7ae008f 84 $text .= "\n" if $$self{opt_loose};
85 my $margin = ' ' x ($$self{opt_margin} + $indent);
11f72409 86 $self->output ($margin . $text . "\n");
b7ae008f 87 return '';
73849855 88}
89
b84d8b9e 90# Fix the various formatting codes.
b7ae008f 91sub cmd_b { local $_ = $_[0]->strip_format ($_[2]); s/(.)/$1\b$1/g; $_ }
92sub cmd_f { local $_ = $_[0]->strip_format ($_[2]); s/(.)/_\b$1/g; $_ }
93sub cmd_i { local $_ = $_[0]->strip_format ($_[2]); s/(.)/_\b$1/g; $_ }
73849855 94
59548eca 95# Output any included code in bold.
96sub output_code {
97 my ($self, $code) = @_;
98 $code =~ s/(.)/$1\b$1/g;
99 $self->output ($code);
100}
101
fe61459e 102# Strip all of the formatting from a provided string, returning the stripped
103# version.
104sub strip_format {
105 my ($self, $text) = @_;
106 $text =~ s/(.)[\b]\1/$1/g;
107 $text =~ s/_[\b]//g;
108 return $text;
109}
110
73849855 111# We unfortunately have to override the wrapping code here, since the normal
b84d8b9e 112# wrapping code gets really confused by all the backspaces.
73849855 113sub wrap {
114 my $self = shift;
115 local $_ = shift;
116 my $output = '';
117 my $spaces = ' ' x $$self{MARGIN};
b7ae008f 118 my $width = $$self{opt_width} - $$self{MARGIN};
73849855 119 while (length > $width) {
21e6de9e 120 # This regex represents a single character, that's possibly underlined
121 # or in bold (in which case, it's three characters; the character, a
122 # backspace, and a character). Use [^\n] rather than . to protect
123 # against odd settings of $*.
124 my $char = '(?:[^\n][\b])?[^\n]';
125 if (s/^((?>$char){0,$width})(?:\Z|\s+)//) {
73849855 126 $output .= $spaces . $1 . "\n";
127 } else {
128 last;
129 }
130 }
131 $output .= $spaces . $_;
132 $output =~ s/\s+$/\n\n/;
b7ae008f 133 return $output;
73849855 134}
135
3c014959 136##############################################################################
73849855 137# Module return value and documentation
3c014959 138##############################################################################
73849855 139
1401;
141__END__
142
143=head1 NAME
144
2504ae52 145=for stopwords
146overstrike
147
73849855 148Pod::Text::Overstrike - Convert POD data to formatted overstrike text
149
0e4e3f6e 150=for stopwords
2504ae52 151overstruck Overstruck Allbery terminal's
0e4e3f6e 152
73849855 153=head1 SYNOPSIS
154
155 use Pod::Text::Overstrike;
156 my $parser = Pod::Text::Overstrike->new (sentence => 0, width => 78);
157
158 # Read POD from STDIN and write to STDOUT.
159 $parser->parse_from_filehandle;
160
161 # Read POD from file.pod and write to file.txt.
162 $parser->parse_from_file ('file.pod', 'file.txt');
163
164=head1 DESCRIPTION
165
166Pod::Text::Overstrike is a simple subclass of Pod::Text that highlights
167output text using overstrike sequences, in a manner similar to nroff.
0e4e3f6e 168Characters in bold text are overstruck (character, backspace, character)
169and characters in underlined text are converted to overstruck underscores
170(underscore, backspace, character). This format was originally designed
171for hard-copy terminals and/or line printers, yet is readable on soft-copy
172(CRT) terminals.
73849855 173
174Overstruck text is best viewed by page-at-a-time programs that take
175advantage of the terminal's B<stand-out> and I<underline> capabilities, such
176as the less program on Unix.
177
178Apart from the overstrike, it in all ways functions like Pod::Text. See
179L<Pod::Text> for details and available options.
180
181=head1 BUGS
182
183Currently, the outermost formatting instruction wins, so for example
184underlined text inside a region of bold text is displayed as simply bold.
185There may be some better approach possible.
186
187=head1 SEE ALSO
188
b7ae008f 189L<Pod::Text>, L<Pod::Simple>
73849855 190
fd20da51 191The current version of this module is always available from its web site at
192L<http://www.eyrie.org/~eagle/software/podlators/>. It is also part of the
193Perl core distribution as of 5.6.0.
194
73849855 195=head1 AUTHOR
196
3c014959 197Joe Smith <Joe.Smith@inwap.com>, using the framework created by Russ Allbery
198<rra@stanford.edu>.
199
200=head1 COPYRIGHT AND LICENSE
201
202Copyright 2000 by Joe Smith <Joe.Smith@inwap.com>.
fe61459e 203Copyright 2001, 2004, 2008 by Russ Allbery <rra@stanford.edu>.
3c014959 204
205This program is free software; you may redistribute it and/or modify it
206under the same terms as Perl itself.
73849855 207
208=cut