diff options
| author | John MacFarlane <[email protected]> | 2024-01-05 22:09:36 -0800 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2024-01-05 22:09:36 -0800 |
| commit | 9f58a552800b52def52ce2a69c5e7eb8269e4d5b (patch) | |
| tree | 1fc80f37c79a003febbaa25f163672af2bd193ec /test/typst-reader.native | |
| parent | e24002ed7507c8f7f391db16e5c54acaeba532db (diff) | |
Typst reader: fix handling of `\overline`.
Due to a typo, it was being incorrectly rendered as an `\underset`.
Closes #9294.
Diffstat (limited to 'test/typst-reader.native')
| -rw-r--r-- | test/typst-reader.native | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/typst-reader.native b/test/typst-reader.native index 740cc65ab..0e00bc1ab 100644 --- a/test/typst-reader.native +++ b/test/typst-reader.native @@ -1674,7 +1674,7 @@ Pandoc , Space , Str "or" , Space - , Math InlineMath "\\underset{\175}{A}" + , Math InlineMath "\\overline{A}" , Space , Str "with" , Space @@ -2042,7 +2042,7 @@ Pandoc , Space , Str "produces" , Space - , Math InlineMath "\\underset{\175}{x + y}" + , Math InlineMath "\\overline{x + y}" , Str "," , Space , Str "and" |
