diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-11-02 21:35:49 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-11-02 21:35:49 -0700 |
commit | 805b9f8a1238288ee094b8593cdb24e24636f01d (patch) | |
tree | 2c3d999e9dfaac51f88974f51d7fcbf342c7879f /test/command | |
parent | e95aeeafb89eed801c574aeafc05d9eeaff1bd0f (diff) | |
download | pandoc-805b9f8a1238288ee094b8593cdb24e24636f01d.tar.gz |
Roff reader: Improved handling of custom strings as arguments.
Added test.
Diffstat (limited to 'test/command')
-rw-r--r-- | test/command/5039.md | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/command/5039.md b/test/command/5039.md new file mode 100644 index 000000000..651a023b7 --- /dev/null +++ b/test/command/5039.md @@ -0,0 +1,27 @@ +``` +% pandoc -f man -t plain +.ds foo bar +.ds bar baz +\*[\*[foo]] +^D +baz +``` + +``` +% pandoc -f man -t plain +.ds foo [bar] +.ds bar baz +\*\*[foo] +^D +baz +``` + +``` +% pandoc -f man -t html +.ds B-Font B +.ds I-Font I +.ds R-Font R +\f\*[B-Font]certtool\fP +^D +<p><strong>certtool</strong></p> +``` |