[BACK]Return to pod2mdoc.1 CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / pod2mdoc

File: [cvsweb.bsd.lv] / pod2mdoc / pod2mdoc.1 (download)

Revision 1.13, Mon Apr 7 11:46:03 2014 UTC (9 years, 11 months ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_0_1, VERSION_0_0_13, VERSION_0_0_11
Changes since 1.12: +1 -4 lines

Allow (ignored) nested escapes in L<>.

.\"	$Id: pod2mdoc.1,v 1.13 2014/04/07 11:46:03 kristaps Exp $
.\"
.\" Copyright (c) 2014 Kristaps Dzonsons <kristaps@bsd.lv>
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
.Dd $Mdocdate: April 7 2014 $
.Dt POD2MDOC 1
.Os
.Sh NAME
.Nm pod2mdoc
.Nd Convert POD data to mdoc input
.Sh SYNOPSIS
.Nm pod2man
.Op Fl chloqruv
.Op Fl d Ar date
.Op Fl n Ar title
.Op Fl s Ar section
.Op Ar file
.Sh DESCRIPTION
The
.Nm
utility reads
.Ar file
and
generates
.Xr mdoc 7
input from
.Xr perlpod 1
source.
If unspecified or
.Ar \&- ,
.Ar file
is taken to be standard input.
Its arguments are as follows:
.Bl -tag -width Ds
.It Fl chloqruv
For compatibility with
.Xr pod2man 1 .
Ignored.
.It Fl d Ar date
Set the document date
.Pq Sq Dd
to
.Ar date
.Po
preferrably in
.Qq Month Day, Year
format
.Pc .
If unspecified,
.Nm
uses the file modification date or the current date if reading from
standard input.
.It Fl n Ar title
Set the document title
.Pq Sq Dt
to
.Ar title .
If unspecified,
.Nm
uses the suffix-stripped filename part of
.Ar file
as a document title or
.Ar STDIN
if reading from standard input
.Pq you probably don't want that .
.It Fl s Ar section
Set the document section
.Pq Sq Dt
to
.Ar section .
If unspecified,
.Nm
uses
.Ar 1
or, if the input file suffix is
.Li .pm ,
uses
.Ar 3p .
.El
.Ss Smarts
Since
.Xr mdoc 7
is semantic and
.Xr perlpod 1
is not,
.Nm
tries to figure out semantic context for some terms.
Specifically, within each paragraph of the SYNOPSIS section, the
following occur:
.Bl -bullet
.It
If any number of
.Li #include <foo.h>
lines are found at the start of a verbatim paragraph, they're rendered
with
.Sq \&In .
.It
An initial
.Li B<>
format code is rendered as
.Sq \&Nm .
.It
Subsequent
.Li B<>
format codes are rendered as
.Sq \&Ar .
However, if the leading character of a
.Li B<>
format code is
.Sq - ,
it is rendered as
.Sq \&Fl .
Subsequent space-separated terms without leading hyphens, e.g.,
.Li B<-foo bar> ,
are rendered as
.Sq \&Ar .
.It
Matching
.Li \&[
and
.Li \&]
pairs are rendered as
.Sq \&Oo
and
.Sq \&Oc .
.El
.Pp
Thus, the input
.Li B<foo> [B<-bar baz>]
is rendered as follows:
.Bd -literal
\&.Nm foo 
\&.Oo
\&.Fl bar Ar baz
\&.Oc
.Ed
.Pp
In the NAME section,
.Sq \&Nm
and
.Sq \&Nd
macros are inferred from text leading and trailing the last hyphen
followed by a space (there may be any number of hyphens preceding the
space).
The space may occur on either side of the hyphen.
Thus,
.Li B<foo> - bar
will be rendered as follows:
.Bd -literal
\&.Nm foo
\&.Nd bar
.Ed
.Pp
Multiple names separated by a comma are properly handled.
.Pp
In any section, the
.Li L<>
format code is considered a
.Sq \&Lk
link if beginning with
.Li http: ,
.Li https: ,
.Li ftp: ,
.Li sftp: ,
.Li smb: ,
or
.Li afs: .
If beginning with
.Li mailto: ,
it is considered a
.Sq \&Mt
link.
Otherwise, it is considered a
.Sq \&Xr
manpage in section 3P if containing double-colons or section 1
otherwise.
The section may be overriden as
.Li L<foo(5)> .
If only a section appears, such as in
.Li </section> ,
the link is rendered with
.Sq \&Sx .
.Sh EXIT STATUS
.Ex -std
.Sh EXAMPLES
To pipe a POD document
.Pa foo.pod
through
.Xr mandoc 1
and a pager:
.Pp
.Dl % pod2mdoc foo.pod | mandoc | more
.Sh COMPATIBILITY
If
.Fl s
is not specified and the suffix for
.Ar file
is
.Li .pm ,
.Nm
infers a manual section of 3p, not 3 as stipulated in
.Xr perlpod 1 .
Furthermore, all links in the format of
.Li L<Foo::Bar>
are assumed to be in section 3p.
.Pp
If
.Nm
encounters an
.Li =item
without the necessary
.Li =over ,
it will pretend that a prior
.Li =over
was invoked.
However, it will do so silently and not, as
.Xr pod2man 1
does, append a POD ERRORS section in the output manpage saying so.
.Sh SEE ALSO
.Xr perlpod 1 ,
.Xr pod2man 1 ,
.Xr mdoc 7
.Sh AUTHORS
.Nm
was written by
.Ar Kristaps Dzonsons ,
.Mt kristaps@bsd.lv .
.Sh CAVEATS
By way of being a presentational language, POD is not well-represented
by
.Xr mdoc 7 .
Semantic content must be inferred and may be wrong.
.Pp
.Nm
only supports the named
.Li E<xxx>
escapes.
HTML names and numbers are silently discarded.
.Pp
Although most white-space requests in character encodings are properly
carried to output, adjacent character escapes with the specific
whitespace sequence
.Qq Li "B<2>B< 3>"
will cause the second space to be lost.
.Pp
The
.Li S<>
escape is discarded.
.Pp
Unless solely a section link, the text and section parts of
.Li L<text|link/section>
are discarded.