| Kwiki-HtmlBlocks documentation | Contained in the Kwiki-HtmlBlocks distribution. |
Kwiki::HtmlBlocks - Kwiki HTML Blocks Plugin
Brian Ingerson <ingy@cpan.org>
Copyright (c) 2004. Brian Ingerson. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See http://www.perl.com/perl/misc/Artistic.html
| Kwiki-HtmlBlocks documentation | Contained in the Kwiki-HtmlBlocks distribution. |
package Kwiki::HtmlBlocks; use Kwiki::Plugin -Base; our $VERSION = '0.11'; const class_id => 'html_blocks'; sub register { my $registry = shift; $registry->add(wafl => html => 'Kwiki::HtmlBlocks::Wafl'); } package Kwiki::HtmlBlocks::Wafl; use base 'Spoon::Formatter::WaflBlock'; sub to_html { $self->block_text; } __DATA__