I am trying to use WordXML file as my xml file and wordml2latex.xsl as Stylesheet but I get an 'createDocumentFragment' error.I tried the 2 solutions given in this forum but still unable to fix it.Would any one please help me. Thanks in advance.(my code is in below)
#!/usr/bin/perl
use strict;
use warnings;
use Data::Dumper;
# instead of use XML::XSLT; ...
#unshift @INC, "C:\\Perl64";
#require XML::XSLT;
use XML::XSLT;
#use XML::DOM;
#use XML::Parser;
#use XML::Simple;
#use LWP::Simple;
#WORDXML to XSLT(wordml2latex) using XML::XSLT
my $xslfile_path = "C:\\temp\\wordml2latex.xsl";
my $xmlfile_path = "C:\\temp\\Sample document.xml";
open my $xmlfile, '<', $xmlfile_path or die "Cannot open '$xmlfile_pat
+h': $!\n";
my $xmlfile_contents;
{
local $/ = undef;
$xmlfile_contents = <$xmlfile>;
close $xmlfile;
}
#print $xmlfile_contents;
# exit 1;
open my $xslfile, '<', $xslfile_path or die "Cannot open '$xslfile_pat
+h': $!\n";
my $xslfile_contents;
{
local $/ = undef;
$xslfile_contents = <$xslfile>;
close $xslfile;
}
#print $xslfile_contents;
my $xslt = XML::XSLT->new (Source => $xslfile_contents, warnings => 1)
+;
$xslt->transform ($xmlfile_contents);
print $xslt->toString;
$xslt->dispose();
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.