Perl 中 Pod 的基本用法。

來源:互聯網
上載者:User

標籤:命令   details   source   for   strong   pac   copyto   php   arc   

1. Pod 文法

pod中用段分可以分為三種,普通段落,字面段落(Verbatim Paragraph)和命令段落。
三者的區分非常簡單,以=pod|head1|cut|over等指示字開始的段落為命令段落,以空格或定位字元(\t)等縮排開始的段落為字面段落,其餘的就是普通段落。

 

[php] view plain copy 
  1. =head1  
  2. =head2  
  3. =head3  
  4. =head4  
  5. 此四個指示字生產指定層級的標題。pod2html時用其對應的<h1> .. </h4>包圍此段落,並且自動產生a的命名/name和索引/index.  

 

[plain] view plain copy 
  1. =pod  
  2. =cut  
  3. =pod 只告訴編譯器pod文檔開始了,而=cut則是pod文檔的結束。  

 

[plain] view plain copy 
  1. =over NUMBER         縮近多少  
  2. =item SYMBOL         產生bullet  
  3. =back  
  4. 這三者是連上一起的。=over後面必須要跟一個=back,而這兩者之間最少要有一個=item,同時不能有=head1..4。  

 

[plain] view plain copy 
  1. 格式代碼  
  2.   
  3. 格式代碼可以用於除字面段落外的所有段落,包括命令段落。  
  4. I<text>  
  5. 用斜體表示text, 效果如text  
  6. B<text>  
  7. 用粗體表示text, 效果如text  
  8. C<code>  
  9. pod2html時用<code>包圍。  
  10. L<text|name/sec>  
  11. 超連結。  

 

 

2. pod2usage 在package中的使用。

    如果想顯示 perl module中的pod,那麼採用如下

 

[plain] view plain copy 
  1. use Pod::Find qw(pod_where);  
  2. pod2usage( -input => pod_where({-inc => 1}, __PACKAGE__) );  
  3. 其中:-inc=>1  表示 Search @INC for the pod and also the scriptdir   __PACKAGE__ 表示包檔案,如果是A::B 則表示  A/B  
  4.  pod_where 返回 檔案控制代碼的引用, pod2usage 中default值是 $0, 當前檔案而不是包本身  
 

Perl 中 Pod 的基本用法。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.