TL;DR: I'm pedantic and am looking for opinions on a good way to format snippets from man pages.
I tend to include snippets from man pages whenever appropriate, and the question that comes to mind often is "what's a good way to format the snippet"?
The easy way out would be to just format it as a block of code which takes care the alignment. E.g.
-P Never follow symbolic links. This is the default behaviour.
When find examines or prints information a file, and the file is
a symbolic link, the information used shall be taken from the
properties of the symbolic link itself.
That's quick and effortless, but it bugs me. Meaningless syntax highlighting creeps in and text-wrapping is affected making it less readable for smaller screens.
I prefer to use block quotes since it it is indeed quoted text. It also allows me to introduce additional formatting to highlight specific text for emphasis, or link keywords to additional resources. However, aligning the output is a slight pain.
Single-level blockquotes don't look like man page output:
-P Never follow symbolic links. This is the default behaviour. When find examines or prints information a file, and the file is a symbolic link, the information used shall be taken from the properties of the symbolic link itself.
while nested quotes introduce too much white space:
-P
Never follow symbolic links. This is the default behaviour. When find examines or prints information a file, and the file is a symbolic link, the information used shall be taken from the properties of the symbolic link itself.
and definition lists don't appear to be formatted differently from plain text (and takes significantly more effort).
- -P
- Never follow symbolic links. This is the default behaviour. When find examines or prints information a file, and the file is a symbolic link, the information used shall be taken from the properties of the symbolic link itself.
Which if the above do you think is more readable? How would you do it?
P.S. The ideal solution would be to introduce1 the (non standard?) definition list markdown syntax and define a more distinct style for <dl>2. However, that's really too much to ask for a non-issue.