| Perl6-Pod documentation | Contained in the Perl6-Pod distribution. |
Perl6::Pod::FormattingCode - base class for formatting code
Perl6::Pod::FormattingCode - base class for formatting code
Return formatting code attributes splited with pre-configured via =config. Unless provided <code_name> return attributes for current .
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-2010 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. |
package Perl6::Pod::FormattingCode; #$Id$
use warnings; use strict; use Perl6::Pod::Block; use base 'Perl6::Pod::Block';
sub get_attr { my $self = shift; my $name = shift || $self->local_name; $self->SUPER::get_attr($name.'<>') } sub on_para { my ($self ,$parser, $txt) = @_; return $self->SUPER::on_para($parser,$txt) } 1; __END__