tex2jax, $ delimiters might ignore escaped \$
Via the AMS. With processEscapes:true
, e.g., this
<p> \$1 -- \$2 -- \$3 -- $4 -- \$5 -- \$6</p>
is turned into
<p> $1 -- $2 -- $3 -- $4 -- \$5 -- \$6</p>
I'm guessing tex2jax starts lookin for another $
to match $4
, reaches the end of the text node, realizes it can stop and never goes back to convert the escaped \$
.
Would you consider this a bug?