summaryrefslogtreecommitdiff
path: root/doc/plugins/contrib/pod.mdwn
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-12-02 12:58:59 -0500
committerJoey Hess <joey@gnu.kitenet.net>2009-12-02 12:58:59 -0500
commite417e7a66e9109ac510e4b9a7747224d60dba85e (patch)
treedefc8b2226c4017fc259667561f70facfbe7f17a /doc/plugins/contrib/pod.mdwn
parentf02f806cf70ed19c9e9aa70e232ca46398b3538a (diff)
parentbd3bb876c292e5426a0dcf69e30f2e371cc4e59c (diff)
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
Diffstat (limited to 'doc/plugins/contrib/pod.mdwn')
-rw-r--r--doc/plugins/contrib/pod.mdwn36
1 files changed, 36 insertions, 0 deletions
diff --git a/doc/plugins/contrib/pod.mdwn b/doc/plugins/contrib/pod.mdwn
new file mode 100644
index 000000000..5ca1b3347
--- /dev/null
+++ b/doc/plugins/contrib/pod.mdwn
@@ -0,0 +1,36 @@
+[[!template id=plugin name=pod author="[[rubykat]]"]]
+## 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