havingCrampedStyle method

MathOptions havingCrampedStyle()

Returns MathOptions with their styles set to cramped (e.g. textCramped)

Implementation

MathOptions havingCrampedStyle() {
  if (this.style.cramped) return this;
  return this.copyWith(
    style: style.cramp(),
  );
}