Padre::Task::SyntaxChecker::XML(3) XML document syntax-checking in the background

SYNOPSIS


# by default, the text of the current document
# will be fetched as will the document's notebook page.
my $task = Padre::Task::SyntaxChecker::XML->new();
$task->schedule;

my $task2 = Padre::Task::SyntaxChecker::XML->new(
text => Padre::Documents->current->text_get,
notebook_page => Padre::Documents->current->editor,
on_finish => sub { my $task = shift; ... },
);
$task2->schedule;

DESCRIPTION

This class implements syntax checking of XML documents in the background. It inherits from Padre::Task::SyntaxChecker. Please read its documentation!

AUTHOR

Heiko Jansen, "<[email protected]>"

COPYRIGHT AND LICENSE

Copyright 2008 Heiko Jansen

This program is free software; you can redistribute it and/or modify it under the same terms as Perl 5 itself.