-
-
03 Jul 2016 17:55:42 UTC
- Distribution: Filter-Encoding
- Module version: 0.01
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues
- Testers (727 / 0 / 0)
- Kwalitee
Bus factor: 0- 80.00% Coverage
- License: unknown
- Activity
24 month- Tools
- Download (2.95KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 1 contributors- Father Chrysostomos <sprout & cpan . org>
- Dependencies
- Carp
- Encode
- Filter::Util::Call
- utf8
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
- NAME
- VERSION
- SYNOPSIS
- DESCRIPTION
- DIAGNOSTICS
- PREREQUISITES
- AUTHOR & COPYRIGHT
- ACKNOWLEDGEMENTS
- SEE ALSO
NAME
Filter::Encoding - Write your script in any encoding
VERSION
Version 0.01
SYNOPSIS
use Filter::Encoding 'MacRoman'; # Code that follows can be written in MacRoman encoding.
DESCRIPTION
This module allows your code to be written in any ASCII-based encoding. Just pass the name of the encoding as an argument to
use Filter::Encoding
. The source code will be decoded and treated as though it had been written in UTF-8 withuse utf8
in effect. That's all this module does.It is intended as a simpler, saner replacement for encoding.pm, one that does not change the up- and downgrading of strings or touch your file handles.
DIAGNOSTICS
- Too many arguments to Filter::Encoding->import()
-
use Filter::Encoding
(which implies->import
) only allows one argument. - Filter::Encoding: Unknown encoding '%s'
-
The encoding must be one recognized by the
Encode
module.
PREREQUISITES
perl 5.8.0 or later
AUTHOR & COPYRIGHT
Copyright (C) 2016 Father Chrysostomos <sprout [at] cpan [dot] org>
This program is free software; you may redistribute it, modify it, or both under the same terms as perl.
ACKNOWLEDGEMENTS
Much of the code was based on the filter feature of encoding.pm.
SEE ALSO
2 POD Errors
The following errors were encountered while parsing the POD:
- Around line 71:
'=item' outside of any '=over'
- Around line 80:
You forgot a '=back' before '=head1'
Module Install Instructions
To install Filter::Encoding, copy and paste the appropriate command in to your terminal.
cpanm Filter::Encoding
perl -MCPAN -e shell install Filter::Encoding
For more information on module installation, please visit the detailed CPAN module installation guide.