| Perl6-Pod documentation | Contained in the Perl6-Pod distribution. |
Perl6::Pod::FormattingCode::S - Space-preserving text
The emergency signal is: S<
dot dot dot dash dash dash dot dot dot>.
Any text enclosed in an S<> code is formatted normally, except that
every whitespace character in it—including any newline—is
preserved. These characters are also treated as being non-breaking
(except for the newlines, of course). For example:
The emergency signal is: S<
dot dot dot dash dash dash dot dot dot>.
would be formatted like so:
The emergency signal is:
dot dot dot dash dash dash dot dot dot.
rather than:
The emergency signal is: dot dot dot dash dash dash dot dot dot.
I<test>
Render xhtml:
<em>test</em>
S<test>
Render to
<literallayout>test</literallayout>
http://zag.ru/perl6-pod/S26.html, Perldoc Pod to HTML converter: http://zag.ru/perl6-pod/, Perl6::Pod::Lib
Zahatski Aliaksandr, <zag@cpan.org>
Copyright (C) 2009-2011 by Zahatski Aliaksandr
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.
| Perl6-Pod documentation | Contained in the Perl6-Pod distribution. |
#=============================================================================== # # DESCRIPTION: Space-preserving text # # AUTHOR: Aliaksandr P. Zahatski, <zahatski@gmail.com> #=============================================================================== package Perl6::Pod::FormattingCode::S;
use warnings; use strict; use Data::Dumper; use Perl6::Pod::FormattingCode; use base 'Perl6::Pod::FormattingCode';
sub to_xhtml { my ( $self, $parser, @in ) = @_; my @elements = $parser->_make_events(@in); # $VAR1 = { # 'data' => \' # dot dots dot dash dash dash dot dot dot', # 'type' => 'CHARACTERS # } # process only 'type' => 'CHARACTERS for (@elements) { next unless exists $_->{type}; next unless $_->{type} eq 'CHARACTERS'; #replase spaces -> and new lines -> <br /> ) ${ $_->{data} } =~ s% % %gs; ${ $_->{data} } =~ s%\n%<br />%gs; } \@elements; }
sub to_docbook { my ( $self, $parser, @in ) = @_; $parser->mk_element('literallayout') ->add_content( $parser->_make_events(@in) ); } 1; __END__