From 805b9f8a1238288ee094b8593cdb24e24636f01d Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Fri, 2 Nov 2018 21:35:49 -0700 Subject: Roff reader: Improved handling of custom strings as arguments. Added test. --- test/command/5039.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 test/command/5039.md (limited to 'test/command/5039.md') 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 +

certtool

+``` -- cgit v1.2.3