The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Mojolicious::Plugin::Text::Minify - remove HTML indentation on the fly

VERSION

version v0.2.4

SYNOPSIS

  # Mojolicious::Lite
  plugin "Text::Minify";

  # Mojolicious
  $app->plugin("Text::Minify");

DESCRIPTION

This plugin uses Text::Minify::XS to remove indentation and trailing whitespace from HTML content.

If the mojox.no-minify key in the stash is set to a true value, then the result will not be minified.

You can also use of the minifier conditional on the application mode

  plugin 'Text::Minify' if app->mode eq "production";

Note that this is naive minifier which does not understand markup, so newlines will still be collapsed in HTML elements where whitespace is meaningful, e.g. pre or textarea.

SUPPORT FOR OLDER PERL VERSIONS

This module requires Perl v5.16, which is the same minimum version that the current version of Mojolicious requires.

Future releases may only support Perl versions released in the last ten years.

SEE ALSO

Text::Minify::XS

Plack::Middleware::Text::Minify

SOURCE

The development version is on github at https://github.com/robrwo/Mojolicious-Plugin-Text-Minify and may be cloned from git://github.com/robrwo/Mojolicious-Plugin-Text-Minify.git

BUGS

Please report any bugs or feature requests on the bugtracker website https://github.com/robrwo/Mojolicious-Plugin-Text-Minify/issues

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

AUTHOR

Robert Rothenberg <rrwo@cpan.org>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2021-2023 by Robert Rothenberg.

This is free software, licensed under:

  The Artistic License 2.0 (GPL Compatible)