Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pod::pseudopod::html(3pm) [debian man page]

Pod::PseudoPod::HTML(3pm)				User Contributed Perl Documentation				 Pod::PseudoPod::HTML(3pm)

NAME
Pod::PseudoPod::HTML -- format PseudoPod as HTML SYNOPSIS
use Pod::PseudoPod::HTML; my $parser = Pod::PseudoPod::HTML->new(); ... $parser->parse_file('path/to/file.pod'); DESCRIPTION
This class is a formatter that takes PseudoPod and renders it as wrapped html. This is a subclass of Pod::PseudoPod and inherits all its methods. METHODS
add_body_tags $parser->add_body_tags(1); $parser->parse_file($file); Adds beginning and ending "<html>" and "<body>" tags to the formatted document. add_css_tags $parser->add_css_tags(1); $parser->parse_file($file); Imports a css stylesheet to the html document and adds additional css tags to url, footnote, and sidebar elements for a nicer display. If you don't plan on writing a style.css file (or using the one provided in "examples/"), you probably don't want this option on. SEE ALSO
Pod::PseudoPod, Pod::Simple COPYRIGHT
Copyright (c) 2003-2004 Allison Randal. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. This library is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. AUTHOR
Allison Randal <allison@perl.org> perl v5.12.4 2011-08-10 Pod::PseudoPod::HTML(3pm)

Check Out this Related Man Page

Pod::Simple::Text(3pm)					 Perl Programmers Reference Guide				    Pod::Simple::Text(3pm)

NAME
Pod::Simple::Text -- format Pod as plaintext SYNOPSIS
perl -MPod::Simple::Text -e "exit Pod::Simple::Text->filter(shift)->any_errata_seen" thingy.pod DESCRIPTION
This class is a formatter that takes Pod and renders it as wrapped plaintext. Its wrapping is done by Text::Wrap, so you can change $Text::Wrap::columns as you like. This is a subclass of Pod::Simple and inherits all its methods. SEE ALSO
Pod::Simple, Pod::Simple::TextContent, Pod::Text SUPPORT
Questions or discussion about POD and Pod::Simple should be sent to the pod-people@perl.org mail list. Send an empty email to pod-people-subscribe@perl.org to subscribe. This module is managed in an open GitHub repository, <https://github.com/theory/pod-simple/>. Feel free to fork and contribute, or to clone <git://github.com/theory/pod-simple.git> and send patches! Patches against Pod::Simple are welcome. Please send bug reports to <bug-pod-simple@rt.cpan.org>. COPYRIGHT AND DISCLAIMERS
Copyright (c) 2002 Sean M. Burke. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. AUTHOR
Pod::Simple was created by Sean M. Burke <sburke@cpan.org>. But don't bother him, he's retired. Pod::Simple is maintained by: o Allison Randal "allison@perl.org" o Hans Dieter Pearcey "hdp@cpan.org" o David E. Wheeler "dwheeler@cpan.org" perl v5.18.2 2013-11-14 Pod::Simple::Text(3pm)
Man Page

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

remove html tags,consecutive duplicate lines

I need help with a script that will remove all HTML tags from an HTML document and remove any consecutive duplicate lines, and save it as a text document. The user should have the option of including the name of an html file as an argument for the script, but if none is provided, then the script... (7 Replies)
Discussion started by: clicstic
7 Replies

2. Shell Programming and Scripting

Removing all except couple of html tags from html file

I tried to find elegant (or at least simple) way to remove all but couple of html tags from html file, but all examples I found dealt with removing all the tags. The logic of the script would be: - if there is <li> or <ul> on the line, do nothing (=write same line to output) - if there is:... (0 Replies)
Discussion started by: juubuntu
0 Replies

3. Shell Programming and Scripting

filtering and formatting the output

Hi Team, I have input file like below. UNDEF : SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_CREATE_SUB_KEY, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : dba} UNDEF : SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION :... (4 Replies)
Discussion started by: kamauv234
4 Replies

4. Shell Programming and Scripting

Editing HTML with FTP access

Hello, I've got a similar problem. I want to add some lines before the ending of the <head> tags. How can I do that? Example.<head> <some website stuff here> <My stuff> <head> I'd like to do that automatically with ftp. Is it possible to activate a sort of syncing in order to update... (4 Replies)
Discussion started by: danogentili
4 Replies

5. Shell Programming and Scripting

Update perl code with parser

The below perl code imports the data in the attached document. However, I can not seem to update the perl code to include a parser like in the desired tab of that document. Thank you :). Most of the data for the parse is included in the document except for the gene and RNA which can is... (0 Replies)
Discussion started by: cmccabe
0 Replies