# NAME Text::Minify::XS - Simple text minification # VERSION version v0.1.0 # SYNOPSIS ```perl use Text::Minify::XS qw/ minify /; my $out = minify( $in ); ``` # EXPORTS ## minify ```perl my $out = minify( $in ); ``` This performs a quick-and-dirty text minifying. Currently, it only removes leading whitespace and multiple newlines. # 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) ```