Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pod::elemental::transformer::pod5(3pm) [debian man page]

Pod::Elemental::Transformer::Pod5(3pm)			User Contributed Perl Documentation		    Pod::Elemental::Transformer::Pod5(3pm)

NAME
Pod::Elemental::Transformer::Pod5 - the default, minimal semantics of Perl5's pod element hierarchy VERSION
version 0.102362 SYNOPSIS
Pod::Elemental::Transformer::Pod5->new->transform_node($pod_elem_document); ...and that's it. OVERVIEW
The Pod5 transformer is meant to be used to convert the result of a "stock" Pod::Elemental::Document into something simpler to work with. It assumes that the document conforms more or less to the convetions laid out in perlpod and perlpodspec. It is not very strict, and makes very few assumptions, described here: o =begin/=end and =for enclose or produce regions within the document o regions are associated with format names; format names that begin with a colon enclose more pod-like content o regions nest strictly; all inner regions must end before outer regions o paragraphs in non-pod regions are "data" paragraphs o non-data paragraphs that start with spaces are "verbatim" paragraphs o groups of data or verbatim paragraphs can be consolodated Further, all elements are replaced with equivalent elements that perform the Pod::Elemental::Autoblank role, so all "blank" events can be removed form the tree and ignored. CONFIGURATION
None. For now, it just does the same thing every time with no configuration or options. AUTHOR
Ricardo SIGNES <rjbs@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Ricardo SIGNES. 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-05-05 Pod::Elemental::Transformer::Pod5(3pm)

Check Out this Related Man Page

Pod::Elemental::Element::Pod5::Region(3pm)		User Contributed Perl Documentation		Pod::Elemental::Element::Pod5::Region(3pm)

NAME
Pod::Elemental::Element::Pod5::Region - a region of Pod (this role likely to be removed) VERSION
version 0.102362 OVERVIEW
A Pod5::Region element represents a region marked by a "=for" command or a pair of "=begin" and "=end" commands. It may have content of its own as well as child paragraphs. Its "as_pod_string" method will emit either a "=begin/=end"-enclosed string or a "=for" command, based on whichever is permissible. ATTRIBUTES
format_name This is the format to which the region was targeted. Note! The format name should not include the leading colon to indicate a pod paragraph. For that, see "is_pod". is_pod If true, this region contains pod (ordinary or verbatim) paragraphs, as opposed to data paragraphs. This will generally result from the document originating in a "=begin" block with a colon-prefixed target identifier: =begin :html This is still a verbatim paragraph. =end :html WARNING
This class is somewhat sketchy and may be refactored somewhat in the future, specifically to refactor its similarities to Pod::Elemental::Element::Nested. AUTHOR
Ricardo SIGNES <rjbs@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Ricardo SIGNES. 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-05-05 Pod::Elemental::Element::Pod5::Region(3pm)
Man Page

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

how to filter out some paragraphs in a file

Hi, I am trying to filter out those paragraphs that contains 'CONNECT', 'alter system switch logfile'. That means say the input file is : ------------------------------------------------------- Wed Jun 7 00:32:31 2006 ACTION : 'CONNECT' CLIENT USER: prdadm CLIENT TERMINAL: Wed Jun 7... (7 Replies)
Discussion started by: cnlhap
7 Replies

2. Shell Programming and Scripting

Perl Script to produce a file

hi i got a file called essay which contain few pages with many paragraphs. now i wanna with PERL to produce another file which called Essaylist that contain a sorted list of words that appear in the file essay. the format for Essaylist: $word found $times times on page a b c.... where $word... (3 Replies)
Discussion started by: mingming88
3 Replies

3. Shell Programming and Scripting

How to search & compare paragraphs between two files

Hello Guys, Greetings to All. I am stuck in my work here today while trying to comapre paragraphs between two files, I need your help on urgent basis, without your inputs I can not proceed. Kindly find some time to answer my question, I'll be grateful to you for ever. My detailed issue is as... (10 Replies)
Discussion started by: NARESH1302
10 Replies

4. Programming

Perl OLE Selection property iteration in cycle

Hi gurus, i am trying to write simple perl script using win32 ole which will iterate over all M$ word paragraphs (any text that ends with a hard return) and print only those paragraphs that matches the specified condition. The problem is that I need to access font size property. It seems to me that... (0 Replies)
Discussion started by: wakatana
0 Replies

5. Shell Programming and Scripting

Extract paragraphs and count them

Hi, I have a text with a number of paragraphs in them. My problem is I need to locate certain errors/warning and extract/count them. Problem is I do not know how many paras are there with that particular type of error/warning. I had thought that somehow if I could count the number of... (25 Replies)
Discussion started by: dsid
25 Replies