NAME

Document::Stembolt - Read & edit a document with YAML-ish meta-data

VERSION

Version 0.012

SYNOPSIS

        my $content;
        $content = Document::Stembolt::Content->read_string(<<END);
        # vim: #
        ---
        hello: world
        ---
        This is the body
        END

        $content->preamble   "# vim: #\n"
        $content->header     { hello => world }
        $content->body       "This is the body\n"

DESCRIPTION

This distribution is meant to take the headache out of reading, writing, and editing "interesting" documents. That is, documents with both content and meta-data (via YAML::Tiny)

More documentation coming soon, check out the code and tests for usage and examples. This is pretty beta, so the interface might change.

AUTHOR

Robert Krimen, "<rkrimen at cpan.org>"

BUGS

Please report any bugs or feature requests to "bug-document-stembolt at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Document-Stembolt>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc Document::Stembolt

You can also look for information at:

ACKNOWLEDGEMENTS
COPYRIGHT & LICENSE

Copyright 2008 Robert Krimen, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.