Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^4: POD Meditation?

by LanX (Saint)
on Apr 28, 2012 at 12:47 UTC ( [id://967808]=note: print w/replies, xml ) Need Help??


in reply to Re^3: POD Meditation?
in thread POD Meditation?

> Except that there isn't any POD...

Where do you get your definition for POD from?

Perl and POD are two different languages which can be intermingled somehow.

  • POD is what the POD-parser matches, and the input doesn't have to be a perl-source anyway.
  • And the Perl-parser doesn't know much about POD-syntax, it basically ignores any blocks between lines starting with a new statement beginning with "=" and followed by at least one word and finished by '=cut'.

    This ignored block doesn't need to be valid POD:

    > perl print "x"; =bala bala blaa asas =cut print "x"
    And the code surrounding POD doesn't need to be Perl.

    Cheers Rolf

  • Replies are listed 'Best First'.
    Re^5: POD Meditation?
    by JavaFan (Canon) on Apr 28, 2012 at 17:07 UTC
      Where do you get your definition for POD from?
      From man perlsyn:
      PODs: Embedded Documentation
          Perl has a mechanism for intermixing documentation with source code.
          While it's expecting the beginning of a new statement, if the compiler
          encounters a line that begins with an equal sign and a word, like this
      
              =head1 Here There Be Pods!
      
          Then that text and all remaining text up through and including a line
          beginning with "=cut" will be ignored.  The format of the intervening
          text is described in perlpod.
      
      Perl and POD are two different languages which can be intermingled somehow.
      But in the snippet the OP gives, there's nothing intermingled. There's just Perl code.
      And the Perl-parser doesn't know much about POD-syntax
      I'm not claiming it does, or should be doing. But Perl does have to know where a POD section starts, and where it ends. And it knows where a POD section starts a lot better than any POD parser.
        /* =head1 Not_Perl() Only POD can parse POD! =cut */ function Not_Perl (){ window.alert("JavaScript!"); }

        Cheers Rolf

          So, you have Javascript comment.

          Is there a point you are trying to make?

    Log In?
    Username:
    Password:

    What's my password?
    Create A New User
    Domain Nodelet?
    Node Status?
    node history
    Node Type: note [id://967808]
    help
    Chatterbox?
    and the web crawler heard nothing...

    How do I use this?Last hourOther CB clients
    Other Users?
    Others perusing the Monastery: (7)
    As of 2024-04-19 12:16 GMT
    Sections?
    Information?
    Find Nodes?
    Leftovers?
      Voting Booth?

      No recent polls found