NAME
Text::Amuse::Preprocessor::HTML - HTML importer
DESCRIPTION
This module tries its best to convert the HTML into an acceptable Muse string. It's not perfect, though, and some manual adjustment is needed if there are tables or complicated structures.
SYNOPSIS
use utf8;
use Text::Amuse::Preprocessor::HTML qw/html_to_muse/;
my $html = '<p>Your text here... & " ò àùć</p>'
my $muse = html_to_muse($html);
FUNCTIONS
html_to_muse($html_decoded_text)
The first argument must be a decoded string with the HTML text. Returns the Text::Amuse formatted body.
html_file_to_muse($html_file)
The first argument must be a filename.