| Text-MetaMarkup documentation | Contained in the Text-MetaMarkup distribution. |
Text::MetaMarkup::AddOn::Raw - Add-on for MM to support raw code
package Text::MetaMarkup::Subclass;
use base qw(Text::MetaMarkup Text::MetaMarkup::AddOn::Raw);
Text::MetaMarkup::AddOn::Raw adds support for the following special tags:
rawIncludes the paragraph's text without further parsing.
perlIncludes the tag's text without further parsing.
There is no license. This software was released into the public domain. Do with it what you want, but on your own risk. The author disclaims any responsibility.
Juerd Waalboer <juerd@cpan.org> <http://juerd.nl/>
| Text-MetaMarkup documentation | Contained in the Text-MetaMarkup distribution. |
package Text::MetaMarkup::AddOn::Raw; use strict; sub paragraph_raw { my ($self, $tag, $text) = @_; return $text; } sub inline_raw { my ($self, $tag, $text) = @_; return $text; } 1; __END__