pandoc/default.man
Alex Vong 304c65f73f Add new template variables $adjusting$ and $hyphenate$ for default.man.
$adjusting$ takes the values "l", "r", "c" or "b",
which adjusts text to left, right, center or both margins respectively.

$hyphenate$ is set to "true" by default,
setting it to "false" will turn off hyphenation.

* default.man: Add new variables $adjusting$ and $hyphenate$.
2015-10-01 02:28:17 +08:00

26 lines
388 B
Groff

$if(has-tables)$
.\"t
$endif$
$if(adjusting)$
.ad $adjusting$
$endif$
$if(hyphenate)$
.hy
$else$
.nh
$endif$
.TH "$title$" "$section$" "$date$" "$footer$" "$header$"
$for(header-includes)$
$header-includes$
$endfor$
$for(include-before)$
$include-before$
$endfor$
$body$
$for(include-after)$
$include-after$
$endfor$
$if(author)$
.SH AUTHORS
$for(author)$$author$$sep$; $endfor$.
$endif$