visitSmash method

  1. @override
String visitSmash(
  1. SmashNode node
)
override

Implementation

@override
String visitSmash(SmashNode node) {
  final content = node.content.map((it) => visit(it)).join("");
  return '<mpadded height="0" depth="0">$content</mpadded>';
}