TODO list for Perl module Pod::WikiDoc

#--------------------------------------------------------------------------#
# General
#--------------------------------------------------------------------------#

- Add more tests for wikidoc utility script

- Revise Parser generation approach to pre-generate before distribution 
  during the distdir action of Build.PL

#--------------------------------------------------------------------------#
# Formatting
#--------------------------------------------------------------------------#

- Nothing right now

#--------------------------------------------------------------------------#
# Extraction
#--------------------------------------------------------------------------#

- Nothing right now

#--------------------------------------------------------------------------#
# Usage
#--------------------------------------------------------------------------#

- wikidoc script: add recursion of a directory

- Add configuration option for substituting an alternate parser

- Add parameter checks to new() 

#--------------------------------------------------------------------------#
# Potential future enhancements
#--------------------------------------------------------------------------#

- Add special handling in the Parser for any punctuation (e.g. open-parens)
  that should be able to precede markup

- Support a range of sharps to include; e.g. ## for private documentation
  and ### for public documentation

- Collapse multiple blank lines

- Add multi-level lists (with what syntax?)

- Add markup for some sort of definitional list; (":item: definition"?)
    - would make it easier to write javadoc style details, e.g.
    ## == {some_function}
    ## :usage:
    ##   code block example
    ## :arguments:
    ## * {foo}: blah blah 
    ## * {bar}: blah blah
    ## :returns:
    ## blah blah blah
    ##
    ## blah blah blah description

- Add markup for blockquote list; ("> blockquote blah blah blah"?)
    
- Markup for other pod markup (e.g. S<>, X<>, etc.) (?!)  

- Passthrough for other formatting codes (e.g. S<>, X<>, etc.) (?!)

- special keyword expansion for things like $VERSION (?!)

    - e.g. %%VERSION%%

#--------------------------------------------------------------------------#
# Efficiency
#--------------------------------------------------------------------------#

- Profile on a long sample of wiki

- Review and refactor grammer

