re: what you said about roff
If you ever contribute to a project that uses mdoc(7) rather than "bare" roff macros, I'd actually recommend giving it a shot! I know it looks very intimidating, but once some friends convinced me to give it a shot anyways, I found it surprisingly comfy!
I'm sure you've stumbled upon that already, but for other people reading this: https://manpages.bsd.lv/ is a good read.
@dzwdz it does look very intimidating! it's really hard for me to imagine preferring mdoc over something like AsciiDoc or ReStructuredText or Markdown
(i found a talk talking about how mandoc is 100x faster than using AsciiDoc which I'm sure is true but having used AsciiDoc, definitely waiting 1 second for the man page to build was not a problem for me)
@b0rk Ignoring its whole "semantic" shtick... I just personally find it pleasant in a way your typical markup format isn't. I'm not sure how to describe it (especially since it's been a while since I wrote a nontrivial amount of mdoc, sadly).
The line-based macros give it a certain rhythm that I like. Most of the time there's only one obvious(-ish) way to format something, and I actually enjoy that rigidity compared to Markdown and such. Obviously all that is very much a "me" thing, YMMV 
@b0rk The source code for `dig` manpage seems to be in reStructuredText, based on the *.rst extension... which GitLab mangles rendering of, not showing anything between "where:" and "Options" in "Simple usage".
Plain text is better: https://gitlab.isc.org/isc-projects/bind9/-/blob/7c82cb0f14e530234f2e239f51e92be11285ecc7/bin/dig/dig.rst?plain=1#L63
@b0rk
```In general it seems like there’s a technical and cultural divide in how documentation works on BSD and on Linux that I still haven’t really understood, but I have been feeling curious about what’s going on in the BSD world.```
From the BSD side, it feels almost too simple to mention in that when you add a new flag to program X, you must also correct/add to the manpage. Of course this would not explain is there are visible differences in examples, but at least it would explain why BSD manpages are regarded highly in general, even if they are sometimes arcane or imperfect, almost all details are there somewhere. All flags are in, not just some of them.
@b0rk I've used roff in the past and it's always intimidating at first and then rather simple. vi actually supports it rather well - the { and } operations understand roff paragraphs.
And yes, it does seem that BSD man pages are better maintained. But you're doing a bit to fix that. I've added a "man" page in my vimwiki to write down when I'm missing man pages or things in man pages. Starting with man(7) amusingly.
We can all make it better - thanks for this article!
@b0rk Also, not sure if it was clear, but man -T dig will emit a postscript version of the man page. Each section has an intro page and that would be printed at the front of the book. There were 7 "manuals" and they were generated by the man command.
In BSD, those intro pages are better maintained.
Richard Stevens used to write all his books in roff. He was kind of like a previous generation's version of you! Not just good at doing, but also teaching.