Open
Description
In many programs' --help
, the last line is Report bugs to <email>.
e.g.:
❯ man --help|rg 'Report bugs'
Report bugs to [email protected].
❯ help2man --help|rg 'Report bugs'
Report bugs to <[email protected]>.
❯ latexmk --help|rg 'Report bugs'
Report bugs etc to John Collins <jcc8 at psu.edu>.
This is the requirements of help2man
, i.e., if a program's --help
have ^Report bugs
, help2man
can use its --help
to generate a man automatically.
So should we highlight the email or the username even URL? I think when user want to find the email to report a bug, the highlighted email and username can be found more easily.
Thanks.