# NAME Text::Minify::XS - Simple text minification # VERSION version v0.2.2 # SYNOPSIS ```perl use Text::Minify::XS qw/ minify /; my $out = minify( $in ); ``` # EXPORTS ## minify ```perl my $out = minify( $in ); ``` This is a quick-and-dirty text minifier that removes whitespace in a single pass. It does the following: - removes leading whitespace (indentation), - removes trailing whitespace, - removes multiple newlines, - and changes all line endings to a newline, "\\n", It does not recognise any form of markup, comments or text quoting. # KNOWN ISSUES This only supports ASCII/Latin-1 text. # SOURCE The development version is on github at [https://github.com/robrwo/Text-Minify-XS](https://github.com/robrwo/Text-Minify-XS) and may be cloned from [git://github.com/robrwo/Text-Minify-XS.git](git://github.com/robrwo/Text-Minify-XS.git) # BUGS Please report any bugs or feature requests on the bugtracker website [https://github.com/robrwo/Text-Minify-XS/issues](https://github.com/robrwo/Text-Minify-XS/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 # COPYRIGHT AND LICENSE This software is Copyright (c) 2020 by Robert Rothenberg. This is free software, licensed under: ``` The Artistic License 2.0 (GPL Compatible) ```