Qgoda (pronounce: yagoda!) is an extensible static site generator with arbitrary taxonomies and cross-links and a strong focus on multilanguage facilities.
The HTMLFilter interface currently runs HTML::Parser over the document and lets the plug-ins install handlers for the various events. That is not flexible enough.
It's better to use HTML::Tree so that plug-ins have a chance to evaluate context.
Incompatible change that is unlikely to break existing sites.
The HTMLFilter interface currently runs
HTML::Parser
over the document and lets the plug-ins install handlers for the various events. That is not flexible enough.It's better to use
HTML::Tree
so that plug-ins have a chance to evaluate context.Incompatible change that is unlikely to break existing sites.