diff options
author | Lev Walkin <vlm@lionet.info> | 2015-12-01 22:33:46 -0800 |
---|---|---|
committer | Lev Walkin <vlm@lionet.info> | 2015-12-01 22:33:46 -0800 |
commit | 23d4d6580384866e30fbc2a1853ef3b572d4e27b (patch) | |
tree | 6c58a5d07ce02c95827b8e1284062f644fec0288 /default.man | |
parent | 5e9fad4cafe45a883001dcd41e701b3453e08337 (diff) | |
download | pandoc-23d4d6580384866e30fbc2a1853ef3b572d4e27b.tar.gz |
Make sure disabling hyphenation actually works.
For some reason, `.nh` does not work if specified _prior to_ `.TH`. If `.nh` is below `.TH`, hyphenation is properly disabled.
Diffstat (limited to 'default.man')
-rw-r--r-- | default.man | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/default.man b/default.man index 896e5d7e0..44b59198b 100644 --- a/default.man +++ b/default.man @@ -8,12 +8,12 @@ $endif$ $if(adjusting)$ .ad $adjusting$ $endif$ +.TH "$title$" "$section$" "$date$" "$footer$" "$header$" $if(hyphenate)$ .hy $else$ -.nh +.nh \" Turn off hyphenation by default. $endif$ -.TH "$title$" "$section$" "$date$" "$footer$" "$header$" $for(header-includes)$ $header-includes$ $endfor$ |