texmath 0.8.2 → 0.8.2.1
raw patch · 3 files changed
+10/−1 lines, 3 files
Files
- changelog +6/−0
- src/Text/TeXMath/Readers/TeX.hs +3/−0
- texmath.cabal +1/−1
changelog view
@@ -1,3 +1,9 @@+texmath (0.8.2.1)++ * Handle bare hyphen in `\text{...}`. Closes jgm/pandoc#2274.+ * Support `\ltimes` and `\rtimes` in the TeX reader (Arata Mizuki).+ * Slightly more efficient number parser.+ texmath (0.8.2) * Better handling of decimal points. Decimal points are now parsed
src/Text/TeXMath/Readers/TeX.hs view
@@ -719,6 +719,8 @@ , ("\\backslash", ESymbol Bin "\x2216") , ("\\setminus", ESymbol Bin "\\") , ("\\times", ESymbol Bin "\x00D7")+ , ("\\ltimes", ESymbol Bin "\x22C9")+ , ("\\rtimes", ESymbol Bin "\x22CA") , ("\\alpha", EIdentifier "\x03B1") , ("\\beta", EIdentifier "\x03B2") , ("\\chi", EIdentifier "\x03C7")@@ -969,6 +971,7 @@ ligature :: TP String ligature = try ("\x2014" <$ string "---") <|> try ("\x2013" <$ string "--")+ <|> try (string "-") <|> try ("\x201C" <$ string "``") <|> try ("\x201D" <$ string "''") <|> try ("\x2019" <$ string "'")
texmath.cabal view
@@ -1,5 +1,5 @@ Name: texmath-Version: 0.8.2+Version: 0.8.2.1 Cabal-Version: >= 1.10 Build-type: Simple Synopsis: Conversion between formats used to represent mathematics.