Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

# /=====================================================================\ #
# | LaTeXML::Post::Writer | #
# | Write file to output | #
# |=====================================================================| #
# | Part of LaTeXML: | #
# | Public domain software, produced as part of work done by the | #
# | United States Government & not subject to copyright in the US. | #
# |---------------------------------------------------------------------| #
# | Bruce Miller <bruce.miller@nist.gov> #_# | #
# \=========================================================ooo==U==ooo=/ #
use strict;
use Encode;
sub new {
my ($class, %options) = @_;
my $self = $class->SUPER::new(%options);
$$self{format} = ($options{format} || 'xml');
$$self{omit_doctype} = 1 if $options{omit_doctype};
$$self{is_html} = 1 if $options{is_html};
return $self; }
sub toProcess {
my ($self, $doc) = @_;
return $$doc{document}; } # Presumably can print anything?
sub process {
my ($self, $doc, $root) = @_;
my $xmldoc = $doc->getDocument;
$doc->getDocument->removeInternalSubset if $$self{omit_doctype};
$root->removeAttribute('xml:id')
if isElementNode($root) && ($root->hasAttribute('xml:id') || '') eq 'TEMPORARY_DOCUMENT_ID';
# Note that this will NOT RE-format a document read in from xml,
# (providing no_blanks is false; which it should be, since it is dangerous.
# it can also remove significant spaces between elements!)
my $serialized = ($xmldoc->documentElement # Is some sort of DOM?
? ($$self{is_html} ? $xmldoc->toStringHTML : $xmldoc->toString(1))
: $xmldoc->textContent);
# NOTE that we are serializing the XML::LibXML::Document whose toString
# has ALREADY encoded (in this case to utf8), so NO encode is needed!
if (my $destination = $doc->getDestination) {
my $destdir = $doc->getDestinationDirectory;
pathname_mkdir($destdir)
or return Fatal('I/O', $destdir, undef, "Couldn't create directory '$destdir'",
"Response was: $!");
my $OUT;
open($OUT, '>', $destination)
or return Fatal('I/O', $destdir, undef, "Couldn't write '$destination'", "Response was: $!");
print $OUT $serialized;
close($OUT); }
else {
print $serialized; }
return $doc; }
# ================================================================================
1;