DISPLAY A MAN PAGE IN HTML

You mean I can do this myself? Absolutely. You can convert a man page groff formatted source file to HTML. Think how impressed the interviewer will be when you hand over your resume in man page format. If it gets past HR.

Here is an example using the Godzilla of all man pages BASH(1) @320K. Second only to ffmpeg-all.1.gz @336K. To make your own man page, edit the bash.1 file. This is on a raspberry pi.

#
# RPI version
pi@pi3:~/web/man> uname -a 
Linux pi3 5.4.72-v7+ #1356 SMP Thu Oct 22 13:56:54 BST 2020 armv7l GNU/Linux
#
# Install groff
pi@pi3:~/web/man> sudo apt-get install groff
Reading package lists... Done
Building dependency tree       
Reading state information... Done
groff is already the newest version (1.22.4-3+deb10u1).
The following packages were automatically installed and are no longer required:
  gyp libc-ares2 libjs-inherits libjs-is-typedarray libssl-dev libuv1
  libuv1-dev nodejs-doc
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 226 not upgraded.
#
# Copy the compressed bash troff file 
cp /usr/share/man/man1/bash.1.gz .
#
# Unzip Bash troff man page 
sudo gunzip bash.1.gz
# 
# Check the bash man page troff file
pi@pi3:~/web/man> file bash.1
bash.1: troff or preprocessor input, ASCII text
# 
# Generate HTML file from bash man troff file
cat bash.1 | groff -mandoc -Thtml > bash.html

This is bash.html.

dave@worldsworstwriter.org2021-10-24