Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pod2markdown(1p) [debian man page]

POD2MARKDOWN(1p)					User Contributed Perl Documentation					  POD2MARKDOWN(1p)

NAME
pod2markdown - Convert POD text to Markdown VERSION
version 1.320 SYNOPSIS
# parse STDIN, print to STDOUT $ pod2markdown < POD_File > Markdown_File # parse file, print to STDOUT $ pod2markdown input.pod # parse file, print to file $ pod2markdown input.pod output.mkdn # parse STDIN, print to file $ pod2markdown - output.mkdn DESCRIPTION
This program uses Pod::Markdown to convert POD into Markdown sources. It accepts two optional arguments: o input pod file (defaults to "STDIN") o output markdown file (defaults to "STDOUT") SEE ALSO
This program is strongly based on "pod2mdwn" from Module::Build::IkiWiki. AUTHORS
o Marcel Gruenauer <marcel@cpan.org> o Victor Moral <victor@taquiones.net> o Ryan C. Thompson <rct at thompsonclan d0t org> o Aristotle Pagaltzis <pagaltzis@gmx.de> o Randy Stauner <rwstauner@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2004 by Marcel Gruenauer. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-04-30 POD2MARKDOWN(1p)

Check Out this Related Man Page

Pod::Text::Color(3)					User Contributed Perl Documentation				       Pod::Text::Color(3)

NAME
Pod::Text::Color - Convert POD data to formatted color ASCII text SYNOPSIS
use Pod::Text::Color; my $parser = Pod::Text::Color->new (sentence => 0, width => 78); # Read POD from STDIN and write to STDOUT. $parser->parse_from_filehandle; # Read POD from file.pod and write to file.txt. $parser->parse_from_file ('file.pod', 'file.txt'); DESCRIPTION
Pod::Text::Color is a simple subclass of Pod::Text that highlights output text using ANSI color escape sequences. Apart from the color, it in all ways functions like Pod::Text. See Pod::Text for details and available options. Term::ANSIColor is used to get colors and therefore must be installed to use this module. BUGS
This is just a basic proof of concept. It should be seriously expanded to support configurable coloration via options passed to the constructor, and pod2text should be taught about those. SEE ALSO
Pod::Text, Pod::Simple The current version of this module is always available from its web site at <http://www.eyrie.org/~eagle/software/podlators/>. It is also part of the Perl core distribution as of 5.6.0. AUTHOR
Russ Allbery <rra@stanford.edu>. COPYRIGHT AND LICENSE
Copyright 1999, 2001, 2004, 2006, 2008, 2009 Russ Allbery <rra@stanford.edu>. This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself. perl v5.16.3 2013-01-02 Pod::Text::Color(3)
Man Page

2 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

STDIN and STDOUT

Hallo, i have a script like: if ;then echo "OK" else echo "ERROR $2 is missing" fi; if ;then touch $2 fi; if ;then cat $1 | grep xy > $2 (1 Reply)
Discussion started by: eightball
1 Replies

2. Red Hat

Linux programming

Develop a program to display file given on the command line to STDOUT, please give sample program (2 Replies)
Discussion started by: ainstin
2 Replies