The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
$self->add_hook ( 'validate_hook',

  sub {
    my ( $doc, $content ) = @_;
    eval {
      die unless int($content) == $content;
    }; if ( $@ ) {
      die "'$content' is not an integer\n";
    }
  }

);

1;