# Source spelling and decoded semantic value are tested separately.
cases:
  - id: single-quoted-times
    source: |-
      explanation: '$12\times 12 = 144$.'
    field: explanation
    expected: '$12\times 12 = 144$.'
  - id: escaped-double-quoted-times
    source: |-
      explanation: "$12\\times 12 = 144$."
    field: explanation
    expected: '$12\times 12 = 144$.'
  - id: yaml-tab-pitfall-remains-valid
    source: |-
      explanation: "$12\times 12 = 144$."
    field: explanation
    expected: "$12\times 12 = 144$."
  - id: single-quoted-command-family
    source: |-
      explanation: '$\sqrt{16}=4$, $37\%=0.37$, $\frac{1}{2}$, and $x_1$. '
    field: explanation
    expected: '$\sqrt{16}=4$, $37\%=0.37$, $\frac{1}{2}$, and $x_1$. '
  - id: literal-display-math
    source: |-
      explanation: |-
        $$
        \sqrt{x^2}=|x|
        $$
    field: explanation
    expected: |-
      $$
      \sqrt{x^2}=|x|
      $$
