| ACME-Error-HTML documentation | Contained in the ACME-Error-HTML distribution. |
ACME::Error::HTML - ACME::Error Backend to Markup Errors with HTML
use ACME::Error HTML; warn "blink"; # <p>blink</p>
Converts your errors to HTML.
Casey West <casey@geeknest.com>
Copyright (c) 2002 Casey R. West <casey@geeknest.com>. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
perl(1), HTML::FromText.
| ACME-Error-HTML documentation | Contained in the ACME-Error-HTML distribution. |
package ACME::Error::HTML; use strict; no strict 'refs'; use vars q[$VERSION]; $VERSION = '0.01'; use HTML::FromText; *die_handler = *warn_handler = sub { return text2html "@_", paras => 1, bold => 1, metachars => 0, urls => 1, email => 1, underline => 1, blockparas => 1, numbers => 1, bullets => 1; }; 1; __END__