diff options
author | 2015-03-27 00:57:00 +0000 | |
---|---|---|
committer | 2015-03-27 00:57:00 +0000 | |
commit | dbca6d775fe087b3209e4e1d9da1929f749192c4 (patch) | |
tree | af8e4eb3604329ee93b05a2f13e56cfcfd696884 /share/man/man7 | |
parent | Strip information that no longer applies and document new "manpath" directive. (diff) | |
download | wireguard-openbsd-dbca6d775fe087b3209e4e1d9da1929f749192c4.tar.xz wireguard-openbsd-dbca6d775fe087b3209e4e1d9da1929f749192c4.zip |
Document that certain stand-alone accents need escaping in rare cases to
prevent them from being converted to Unicode replacements in PDF output.
Issue found by bentley@, OK jmc@ bentley@.
Diffstat (limited to 'share/man/man7')
-rw-r--r-- | share/man/man7/mandoc_char.7 | 28 |
1 files changed, 25 insertions, 3 deletions
diff --git a/share/man/man7/mandoc_char.7 b/share/man/man7/mandoc_char.7 index 44152255a76..392e37f324f 100644 --- a/share/man/man7/mandoc_char.7 +++ b/share/man/man7/mandoc_char.7 @@ -1,8 +1,8 @@ -.\" $OpenBSD: mandoc_char.7,v 1.23 2015/01/20 18:54:33 tedu Exp $ +.\" $OpenBSD: mandoc_char.7,v 1.24 2015/03/27 00:57:00 schwarze Exp $ .\" .\" Copyright (c) 2003 Jason McIntyre <jmc@openbsd.org> .\" Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> -.\" Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org> +.\" Copyright (c) 2011, 2013, 2015 Ingo Schwarze <schwarze@openbsd.org> .\" .\" Permission to use, copy, modify, and distribute this software for any .\" purpose with or without fee is hereby granted, provided that the above @@ -16,7 +16,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: January 20 2015 $ +.Dd $Mdocdate: March 27 2015 $ .Dt MANDOC_CHAR 7 .Os .Sh NAME @@ -142,6 +142,28 @@ Note that on text lines, literal double-quote characters can be used verbatim. All other quote-like characters can be used verbatim as well, even on request and macro lines. +.Ss Accents +In output modes supporting such special output characters, for example +.Fl T Cm pdf , +some +.Xr roff 7 +formatters convert the following ASCII input characters to the +following Unicode special output characters: +.Bl -column x(ga U+2018 -offset indent +.It \(ga Ta U+2018 Ta left single quotation mark +.It \(aq Ta U+2019 Ta right single quotation mark +.It \(ti Ta U+02DC Ta small tilde +.El +.Pp +In prose, this automatic substitution is often desirable; +but when these characters have to be displayed as plain ASCII +characters, for example in source code samples, they require +escaping to render as follows: +.Bl -column x(ga U+2018 -offset indent +.It \e(ga Ta U+0060 Ta grave accent +.It \e(aq Ta U+0027 Ta apostrophe +.It \e(ti Ta U+007E Ta tilde +.El .Ss Periods The period .Pq Sq \&. |