github
Advanced Search
  • Home
  • Pricing and Signup
  • Explore GitHub
  • Blog
  • Login

jmcnamara / pod-simple-wiki

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 2
    • 1
  • Source
  • Commits
  • Network (1)
  • Issues (0)
  • Downloads (0)
  • Wiki (3)
  • Graphs
  • Branch: master

click here to add a description

click here to add a homepage

  • Branches (1)
    • master ✓
  • Tags (0)
Sending Request…
Enable Donations

Pledgie Donations

Once activated, we'll place the following badge in your repository's detail box:
Pledgie_example
This service is courtesy of Pledgie.

A Perl Module for creating Pod to Wiki filters. — Read more

  cancel

http://search.cpan.org/~jmcnamara/Pod-Simple-Wiki/

  cancel
  • Private
  • Read-Only
  • HTTP Read-Only

This URL has Read+Write access

Prep for CPAN release 0.11. 
jmcnamara (author)
Sat Aug 29 06:48:16 -0700 2009
commit  b3824691e774a35625aee1c5f852ca4dc0c71fb0
tree    4e6168eb79da4cdb153f1d2e2fca895c4df196ee
parent  047538bc03739ed72e3dcad5d8b1c90f5f97f8b0
pod-simple-wiki /
name age
history
message
file Changes Loading commit data...
file MANIFEST
file META.yml
file Makefile.PL
file README
directory bin/
directory examples/
directory lib/
directory t/
README
NAME
    Pod::Simple::Wiki - A class for creating Pod to Wiki filters.


DESCRIPTION
    The `Pod::Simple::Wiki' module is used for converting Pod text
    to Wiki text.

    Pod (Plain Old Documentation) is a simple markup language used
    for writing Perl documentation.

    A Wiki is a user extensible web site. It uses very simple mark-
    up that is converted to Html.

    For an introduction to Wikis see:
    http://en.wikipedia.org/wiki/Wiki


SYNOPSIS
    To create a simple `pod2wiki' filter:

        #!/usr/bin/perl -w

        use strict;
        use Pod::Simple::Wiki;

        my $parser = Pod::Simple::Wiki->new();

        if (defined $ARGV[0]) {
            open IN, $ARGV[0]  or die "Couldn't open $ARGV[0]: $!\n";
        } else {
            *IN = *STDIN;
        }

        if (defined $ARGV[1]) {
            open OUT, ">$ARGV[1]" or die "Couldn't open $ARGV[1]: $!\n";
        } else {
            *OUT = *STDOUT;
        }

        $parser->output_fh(*OUT);
        $parser->parse_file(*IN);

        __END__


SEE ALSO
    This module also installs a `pod2wiki' command line utility. See
    `pod2wiki --help' for details.


AUTHOR
    John McNamara jmcnamara@cpan.org


COPYRIGHT
    © MMIII-MMV, John McNamara.

    All Rights Reserved. This module is free software. It may be
    used, redistributed and/or modified under the same terms as Perl
    itself.

Blog | Support | Training | Contact | API | Status | Twitter | Help | Security
© 2010 GitHub Inc. All rights reserved. | Terms of Service | Privacy Policy
Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
Dedicated Server