The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Padre::Document::LaTeX::Syntax - Latex document syntax-checking in the background

VERSION

version 0.05

SYNOPSIS

  # by default, the text of the current document
  # will be fetched
  my $task = Padre::Document::LaTeX::Syntax->new();
  $task->schedule;

  my $task2 = Padre::Document::LaTeX::Syntax->new(
    text          => Padre::Documents->current->text_get,
    filename      => Padre::Documents->current->editor->{Document}->filename,
  );
  $task2->schedule;

DESCRIPTION

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

SEE ALSO

This class inherits from Padre::Task::Syntax which in turn is a Padre::Task and its instances can be scheduled using Padre::TaskManager.

AUTHORS

  • Zeno Gantner <zenog@cpan.org>

  • Ahmad M. Zawawi <ahmad.zawawi@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2010 by Zeno Gantner.

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