會有人知道的方式來動態增量項目冠軍的整數?這主要是爲了避免在每一步驟中需要添加/移除新步驟的情況下必須更改每個步驟編號。下面是一個小的三個步驟,讓您的模板結構的一個粗略的想法:自動遞增整數的POD項目
=step_wash 1. Wash
<p>Add washing steps here</p>
=cut
# Throw some perl code here to wash stuff
=step_dry 2. Dry
<p>Add drying steps here</p>
=cut
# Throw some perl code here to dry things
=step_fold 3. Fold
<p>Add folding steps here</p>
=cut
# Fold all of the things Perl!
忽視的這個項目名稱和結構,目的是嘗試消除使用靜態編號的標題每一個項目。我想知道是否有一種可能的方式來生成一個遞增的整數;幾乎就像用{ print $i++ }
等替代1,2,3 ......等,但在POD中。
關於[reddit]的crosspost(http://www.reddit.com/r/perl/comments/1nv2bs/perlpod_ordered_list/) – amon
您可以隨時從模板生成您的吊艙 – ikegami