#########################
#        TODO           #
#                       #
# (no particular order) #
#########################

change __speller() method to a __text_filter() sub that calls &text_filter attribute if it exists.  defaults to sub { __speller }.  lays way for translating subclasses, or html-muckers, or whatever. possibly create a Pod::Advent::Translate (passed a object w/a ->translate() method).

doc & test case re:  =cut/comment/=pod method of comments.

document that, although Makefile.PL complains, module runs fine w/o Text::Aspell.

Linga::Translate support;  --lang option.

reposition the 'View Source (POD)' link?

pod2advent --spellcheck option (default on) ..  and  warn cleanly if trying to sepllcheck and can't load Text::Aspell

pod2advent option to generate template (basically cat ex/getting_started.pod)

pod2advent option to generate css (basically cat style.css)

pod2advent option for 'POD' link vs rel=alternate tag

ability to force html encoding? (see 0.07 changelog entry re: you're)

more tests

test w/more complicated perl samples, for differences in Perl::Tidy versions.

code refactoring (package var usage; also maybe make code/directive behavior based on a config data structure)

support for =over/=item

check html output for validity

custom podchecker (and/or subclass of Pod::Checker)

rewrite with Pod::Simple::Methody ?

------------------
Items from Jerrad:
------------------

process <pre> for pod like A<>?
	(maybe have a new tag?  can a new T<> work multi-line?
	echo -e "=begin pre\n\nA<http://example.com|Test>\n\n=end pre" | perl -Ilib bin/pod2advent +

WISH: better comment support: #lines, and extracting whole <!-- --> clause,
rather than passing it through and hoping the browser parses results correctly.
  ==> See TODO test cases in t/snippets.t


##############
COVERAGE STATS
##############

*** v0.15 ***
---------------------------- ------ ------ ------ ------ ------ ------ ------
File                           stmt   bran   cond    sub    pod   time  total
---------------------------- ------ ------ ------ ------ ------ ------ ------
bin/pod2advent                100.0  100.0    n/a  100.0    n/a    0.2  100.0	#  36/36
blib/lib/Pod/Advent.pm        100.0  100.0   95.6  100.0  100.0   99.8   99.3	# 438/441
Total                         100.0  100.0   95.6  100.0  100.0  100.0   99.4	# 474/477
---------------------------- ------ ------ ------ ------ ------ ------ ------

export HARNESS_PERL_SWITCHES=-MDevel::Cover=+ignore,Errno.pm
cover -delete
make test
cover
chmod go+rx cover_db

