This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
.cvsignore | ||
| |
.gitignore | ||
| |
.screenrc | ||
| |
Changes | ||
| |
GNUmakefile | ||
| |
MANIFEST | ||
| |
Makefile.PL | ||
| |
README | ||
| |
lib/ | ||
| |
t/ |
README
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:
* RT: CPAN's request tracker
<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Document-Stembolt>
* AnnoCPAN: Annotated CPAN documentation
<http://annocpan.org/dist/Document-Stembolt>
* CPAN Ratings
<http://cpanratings.perl.org/d/Document-Stembolt>
* Search CPAN
<http://search.cpan.org/dist/Document-Stembolt>
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.








