aboutsummaryrefslogtreecommitdiff
path: root/textproc/p5-Pod-Eventual/pkg-descr
diff options
context:
space:
mode:
authorSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2013-02-07 15:11:37 +0000
committerSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2013-02-07 15:11:37 +0000
commitc4d8a9541e9595063f352ca487db189495d57054 (patch)
treef7826f97455ba6906d36bf3613b3efed770fb68d /textproc/p5-Pod-Eventual/pkg-descr
parent7ef2d0a8e0937dd53fee3f321185503eabb9eabc (diff)
downloadports-c4d8a9541e9595063f352ca487db189495d57054.tar.gz
ports-c4d8a9541e9595063f352ca487db189495d57054.zip
Notes
Diffstat (limited to 'textproc/p5-Pod-Eventual/pkg-descr')
-rw-r--r--textproc/p5-Pod-Eventual/pkg-descr14
1 files changed, 13 insertions, 1 deletions
diff --git a/textproc/p5-Pod-Eventual/pkg-descr b/textproc/p5-Pod-Eventual/pkg-descr
index 20d872c35d5a..aef6013ec90a 100644
--- a/textproc/p5-Pod-Eventual/pkg-descr
+++ b/textproc/p5-Pod-Eventual/pkg-descr
@@ -1,3 +1,15 @@
-read a POD document as a series of trivial events
+POD is a pretty simple format to write, but it can be a big pain to deal with
+reading it and doing anything useful with it. Most existing POD parsers care
+about semantics, like whether a =item occurred after an =over but before a back,
+figuring out how to link a L<>, and other things like that.
+
+Pod::Eventual is much less ambitious and much more stupid. Fortunately, stupid
+is often better. (That's what I keep telling myself, anyway.)
+
+Pod::Eventual reads line-based input and produces events describing each POD
+paragraph or directive it finds. Once complete events are immediately passed to
+the handle_event method. This method should be implemented by Pod::Eventual
+subclasses. If it isn't, Pod::Eventual's own handle_event will be called, and
+will raise an exception.
WWW: http://search.cpan.org/dist/Pod-Eventual/