I try to use a proper macro like .Bl
with its .It
to render list in mandoc (or per say man page) with the following syntax (as seen in mdoc.7)
The arguments are as follows:
.Bl -tag -width Ds
.It Fl v
Print verbose information.
.El
Tried both on macOS and Ubuntu 16.04 by putting into .SH DESCRIPTION
, and it doesn't render expected output. All I see is
The arguments are as follows: Print verbose information.
The steps I do this is
- Edit mandoc file
- Symlink it to target file at
/usr/local/share/man/man3/
- See result by
man <filename>
PS. I didn't go any gzip
.
What did I miss? How can I properly render list in mandoc?