in reply to Re^3: RFC: Proofread the POD for my HTML elements module
in thread RFC: Proofread the POD for my HTML elements module

I have added a lot since the original post, and since this tread is getting so long, the current code is a gist on GitHub Gist. I have not written for every possible HTML tag, only the ones I use (or got interested in while writing).

The problem is that many HTML elements have names that conflict with Perl's built-ins (tr, map, etc).

There are only five HTML elements (six when HTML5 is ready) which have names in conflict with Perl's built-ins, and it is an easy fix. Make the HTML element subroutine names semantic or expand them to do more.

Note: I treat all inline elements differently than I do block elements, except a which is anchor when I am writing one alone.

The great thing about writing this in Perl is the HTML element tag names do not hold us hostage. We can name the subroutines whatever we want. So, for h1 through h6 I wrote a sub called heading. For ul and ol, I wrote list (with li being item).

I added your module to my SEE ALSO. :)

Have a cookie and a very nice day!
Lady Aleena