Subject: | YAML::Syck is needed for more than just debugging |
This is a wonderful module. Thanks for continuing to support and improve
it.
In the docs, it states that the, "YAML::Syck" module is needed only for,
"debugging", but the module is loaded every time this module is used. On
line 638:
use YAML::Syck;
So, it may be better to either load this module only if the "debugging"
mode is, in fact on (which would be a nice little performance gain), or
change the docs to say that it's required for general usage.
My main concern is that YAML::Syck is an XS module, and without it,
Text::TextToHTML is Pure Perl (core modules, aside), which is very
appealing for people who cannot/don't know how to install perl modules
via the cpan shell, or do not have access to a compiler - it's very
common in inexpensive, shared-server hosting plans.
Thanks for taking into consideration this report ;)