ExtUtils-MakeMaker-6.05 uses the following regex:
/^=(head|item|pod)\b/
But that matches =head, not =head[1-4]. Perhaps the following instead:
/^=(head[1-4]|item|pod)\b/
- todd
ExtUtils-MakeMaker-6.05 uses the following regex:
/^=(head|item|pod)\b/
But that matches =head, not =head[1-4]. Perhaps the following instead:
/^=(head[1-4]|item|pod)\b/
- todd