# Blosxom Plugin: output_utf8 # Author(s): Rainer Volz # Version: 2.0.1 # Documentation: See the bottom of this file or type: perldoc output_utf8 use Encode; package output_utf8; # --- Configurable variables ----- # -------------------------------- sub start { 1; } sub last { $blosxom::output = Encode::encode_utf8 ($blosxom::output); return $blosxom::entries; } 1; __END__ =head1 NAME Blosxom Plug-in: output_utf8 =head1 SYNOPSIS Purpose: Encodes the output of Blosxom and previous plugins to UTF-8. The plugin is called via 'last'. The variable $entries is left unchanged and returned to Blosxom. No configurable variables available. Just drop it in your plugin directory. Caveat: Make sure that the input to this plugin doesn't contain UTF-8 sequences, otherwise strange results may occur. =head1 VERSION 2.0.1 Version number coincides with the version of Blosxom with which the current version was first bundled. =head1 AUTHOR Rainer Volz