aboutsummaryrefslogtreecommitdiff
path: root/test/command/macros.md
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2018-08-17 23:19:38 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2018-08-17 23:19:38 -0700
commit42f4632e600dea34e5dcbe75fc734899a2436c05 (patch)
treee93db810dc6f43f3ce98d4f09ed811d2433452e4 /test/command/macros.md
parent159863e8dad24e98be3478867d0f8ea63b2a764b (diff)
downloadpandoc-42f4632e600dea34e5dcbe75fc734899a2436c05.tar.gz
LaTeX reader: Support more text-mode accents.
Add support for `\|`, `\b`, `\G`, `\h`, `\d`, `\f`, `\r`, `\t`, `\U`, `\i`, `\j`, `\newtie`, `\textcircled`. Also fall back to combining characters when composed characters are not available. Closes #4652.
Diffstat (limited to 'test/command/macros.md')
-rw-r--r--test/command/macros.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/command/macros.md b/test/command/macros.md
index 9de87e7a0..d091c2191 100644
--- a/test/command/macros.md
+++ b/test/command/macros.md
@@ -24,18 +24,18 @@ expanded at point of use:
% pandoc -f latex -t latex
\let\a\b
\newcommand{\b}{\emph{ouk}}
-\a
+\a a
^D
-\b
+a̱
```
```
% pandoc -f latex -t latex
\newcommand{\a}{\b}
\newcommand{\b}{\emph{ouk}}
-\a
+\a a
^D
-\emph{ouk}
+\emph{ouk}a
```
```