in reply to conversion from doc to html
This as simple as I could make it for you. Using:
Text::FromAny#!/usr/bin/perl -slw use strict; use warnings; use Text::FromAny; use HTML::FromText (); my $any = Text::FromAny->new(file => 'test-basic.doc'); my $text = $any->text; my $t2h = HTML::FromText->new({ paras => 1 }); my $html = $t2h->parse( $text ); print $html;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: conversion from doc to html
by srocks (Initiate) on Dec 07, 2011 at 07:14 UTC | |
by Anonymous Monk on Dec 07, 2011 at 07:22 UTC |