From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

# /=====================================================================\ #
# | LaTeXML::Post::MathML::Content | #
# | MathML generator for LaTeXML | #
# |=====================================================================| #
# | 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;
sub convertNode {
my ($self, $doc, $xmath) = @_;
return { processor => $self, xml => $self->cmml_top($xmath),
mimetype => 'application/mathml-content+xml' }; }
sub rawIDSuffix {
return '.cmml'; }
#================================================================================
1;