schwarze 7fc0cbc6a2 * delete bogus version number from README; from Kaspars at Bankovskis dot net
* we no longer change the rendering of the bullet character
* avoid groff warning "unbalanced .el request" when running with -mdoc -ww
* improve rendering of large braces in UTF-8 output (accepted upstream)
* bump REVISION
ok sthen@ naddy@
2015-02-16 15:45:11 +00:00
..

$OpenBSD: README,v 1.3 2015/02/16 15:45:11 schwarze Exp $

+-----------------------------------------------------------------------
| Running ${FULLPKGNAME} on OpenBSD
+-----------------------------------------------------------------------

Even though roff is a general-purpose typesetting system, the OpenBSD
groff port is focussed on formatting ports(7) manuals that mandoc(1)
is unable to handle.  To make groff output as similar as possible to
mandoc output, the following two groff features have been disabled by
default: adjustment of text to the right margin and hyphenation.

If you want to use groff for serious typesetting work and need these
features, please set up your own troff(1) configuration file:

  mkdir ~/.tmac
  cp ${TRUEPREFIX}/share/groff/current/tmac/troffrc ~/.tmac/
  export GROFF_TMAC_PATH=~/.tmac

In your new troffrc file, uncomment these two lines to enable
hyphenation:

.do hpf hyphen.us
.do hpfa hyphenex.us

Delete these three lines to enable the roff `ad' request, such that
documents can adjust text to the right margin:

.ad l
.de ad
..

In case you dislike the default string "OpenBSD ports" in mdoc(7)
manual footers, you can add the the line

.ds default-operating-system my fancy system

to the file ${TRUEPREFIX}/share/groff/site-tmac/mdoc.local.
But don't do that on a machine you intend to build ports(7) on.


To suit the taste of OpenBSD developers, two mdoc(7) formatting
details have been changed with respect to the upstream distribution:

 * Title lines use an n-dash, not an m-dash between the manual page
   name and the manual page description.

 * The .Pa macro always produces emphasized text,
   even in the FILES section.