aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorhttp://kerravonsen.dreamwidth.org/ <http://kerravonsen.dreamwidth.org/@web>2009-12-02 00:43:47 -0500
committerJoey Hess <joey@kitenet.net>2009-12-02 00:43:47 -0500
commit5d68ee9e4e920ef3756c7489fd84eafd1b332f87 (patch)
tree2acc8c95d1f3ef582788ae56795dfc598ac6cb9b /doc
parent6eb35262d5c2cd3a9b24029d958cc24743ccd64f (diff)
downloadikiwiki-5d68ee9e4e920ef3756c7489fd84eafd1b332f87.tar
ikiwiki-5d68ee9e4e920ef3756c7489fd84eafd1b332f87.tar.gz
here be a plugin for processing POD!
Diffstat (limited to 'doc')
-rw-r--r--doc/plugins/contrib/pod.mdwn35
1 files changed, 35 insertions, 0 deletions
diff --git a/doc/plugins/contrib/pod.mdwn b/doc/plugins/contrib/pod.mdwn
new file mode 100644
index 000000000..648e3b0c2
--- /dev/null
+++ b/doc/plugins/contrib/pod.mdwn
@@ -0,0 +1,35 @@
+## NAME
+
+IkiWiki::Plugin::pod - process pages written in POD format.
+
+## SYNOPSIS
+
+In the ikiwiki setup file, enable this plugin by adding it to the
+list of active plugins.
+
+ add_plugins => [qw{goodstuff pod ....}],
+
+## DESCRIPTION
+
+IkiWiki::Plugin::pod is an IkiWiki plugin enabling ikiwiki to
+process pages written in POD (Plain Old Documentation) format.
+This will treat files with a `.pod` or `.pm` extension as files
+which contain POD markup.
+
+## OPTIONS
+
+The following options can be set in the ikiwiki setup file.
+
+* **pod_index:** If true, this will generate an index (table of contents) for the page.
+* **pod_toplink:** The label to be used for links back to the top of the page. If this is empty, then no top-links will be generated.
+
+## PREREQUISITES
+
+ IkiWiki
+ Pod::Xhtml
+ IO::String
+
+## DOWNLOAD
+
+* browse at GitHub: <http://github.com/rubykat/ikiplugins/blob/master/IkiWiki/Plugin/pod.pm>
+* git repo at git://github.com/rubykat/ikiplugins.git