From 6eb35262d5c2cd3a9b24029d958cc24743ccd64f Mon Sep 17 00:00:00 2001 From: "http://kerravonsen.dreamwidth.org/" Date: Tue, 1 Dec 2009 20:55:25 -0500 Subject: clearing up a bit of confusion about who I am --- doc/plugins/contrib/xslt.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/plugins') diff --git a/doc/plugins/contrib/xslt.mdwn b/doc/plugins/contrib/xslt.mdwn index f98f8378d..c30e618ea 100644 --- a/doc/plugins/contrib/xslt.mdwn +++ b/doc/plugins/contrib/xslt.mdwn @@ -1,4 +1,4 @@ -[[!template id=plugin name=xslt author="rubykat"]] +[[!template id=plugin name=xslt author="[[rubykat]]"]] ## NAME IkiWiki::Plugin::xslt - ikiwiki directive to process an XML file with XSLT -- cgit v1.2.3 From 5d68ee9e4e920ef3756c7489fd84eafd1b332f87 Mon Sep 17 00:00:00 2001 From: "http://kerravonsen.dreamwidth.org/" Date: Wed, 2 Dec 2009 00:43:47 -0500 Subject: here be a plugin for processing POD! --- doc/plugins/contrib/pod.mdwn | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 doc/plugins/contrib/pod.mdwn (limited to 'doc/plugins') 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: +* git repo at git://github.com/rubykat/ikiplugins.git -- cgit v1.2.3 From 11a6112b561a5624b30cb587a067d35e0098c21d Mon Sep 17 00:00:00 2001 From: "http://kerravonsen.dreamwidth.org/" Date: Wed, 2 Dec 2009 00:45:23 -0500 Subject: added the proper template thingie --- doc/plugins/contrib/pod.mdwn | 1 + 1 file changed, 1 insertion(+) (limited to 'doc/plugins') diff --git a/doc/plugins/contrib/pod.mdwn b/doc/plugins/contrib/pod.mdwn index 648e3b0c2..5ca1b3347 100644 --- a/doc/plugins/contrib/pod.mdwn +++ b/doc/plugins/contrib/pod.mdwn @@ -1,3 +1,4 @@ +[[!template id=plugin name=pod author="[[rubykat]]"]] ## NAME IkiWiki::Plugin::pod - process pages written in POD format. -- cgit v1.2.3