aboutsummaryrefslogtreecommitdiff
path: root/test/command/3568.md
AgeCommit message (Collapse)AuthorFilesLines
2018-10-17Move common groff functions to Text.Pandoc.Writers.GroffJohn MacFarlane1-1/+1
(unexported module). These are used in both the man and ms writers. Moved groffEscape out of Text.Pandoc.Writers.Shared [cancels earlier API change from adding it, which was after last release]. This fixes strong/code combination on man (should be `\f[CB]` not `\f[BC]`), mentioned in #4973. Updated tests. Closes #4975.
2018-10-17Man writer: use \f[R] instead of \f[] to reset fontAlexander Krotov1-3/+4
Fixes #4973
2017-04-12Man writer: Fix handling of nested font commands.John MacFarlane1-0/+15
Previously pandoc emitted incorrect markup for bold + italic, for example, or bold + code. Closes #3568.