visitSpace method
Implementation
@override
String visitSpace(SpaceNode node) {
final width = switch (node.type) {
SpaceType.thin => "thinmathspace",
SpaceType.medium => "mediummathspace",
SpaceType.thick => "thickmathspace",
SpaceType.quad => "1em",
SpaceType.qquad => "2em",
SpaceType.negativeThin => "negativethinmathspace",
SpaceType.normal => "0.25em",
};
return '<mspace width="$width"/>';
}