adjustMathMLAttributes method

void adjustMathMLAttributes(
  1. StartTagToken token
)

Implementation

void adjustMathMLAttributes(StartTagToken token) {
  final orig = token.data.remove('definitionurl');
  if (orig != null) {
    token.data['definitionURL'] = orig;
  }
}