Updated description of heuristic for math $.

This commit is contained in:
John MacFarlane 2014-09-29 14:55:03 -07:00
parent 7ac1b6b022
commit 067f2e640f

5
README
View file

@ -2131,8 +2131,9 @@ Math
#### Extension: `tex_math_dollars` ####
Anything between two `$` characters will be treated as TeX math. The
opening `$` must have a character immediately to its right, while the
closing `$` must have a character immediately to its left. Thus,
opening `$` must have a non-space character immediately to its right,
while the closing `$` must have a non-space character immediately to its
left, and must not be followed immediately by a digit. Thus,
`$20,000 and $30,000` won't parse as math. If for some reason
you need to enclose text in literal `$` characters, backslash-escape
them and they won't be treated as math delimiters.