Blame


1 2ad4a6a2 2022-01-23 op #!/bin/sh
2 2ad4a6a2 2022-01-23 op #
3 2ad4a6a2 2022-01-23 op # Copyright (c) 2022 Omar Polo <op@omarpolo.com>
4 2ad4a6a2 2022-01-23 op #
5 2ad4a6a2 2022-01-23 op # Permission to use, copy, modify, and distribute this software for any
6 2ad4a6a2 2022-01-23 op # purpose with or without fee is hereby granted, provided that the above
7 2ad4a6a2 2022-01-23 op # copyright notice and this permission notice appear in all copies.
8 2ad4a6a2 2022-01-23 op #
9 2ad4a6a2 2022-01-23 op # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 2ad4a6a2 2022-01-23 op # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 2ad4a6a2 2022-01-23 op # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 2ad4a6a2 2022-01-23 op # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 2ad4a6a2 2022-01-23 op # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 2ad4a6a2 2022-01-23 op # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 2ad4a6a2 2022-01-23 op # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 2ad4a6a2 2022-01-23 op #
17 2ad4a6a2 2022-01-23 op # usage: mdoc2html.sh src out
18 2ad4a6a2 2022-01-23 op #
19 2ad4a6a2 2022-01-23 op # converts the manpage `src' to the HTML file `out', tweaking the
20 2ad4a6a2 2022-01-23 op # style
21 2ad4a6a2 2022-01-23 op
22 2ad4a6a2 2022-01-23 op set -e
23 2ad4a6a2 2022-01-23 op
24 2ad4a6a2 2022-01-23 op : ${1:?missing input file}
25 2ad4a6a2 2022-01-23 op : ${2:?missing output file}
26 2ad4a6a2 2022-01-23 op
27 2ad4a6a2 2022-01-23 op man -Thtml -l "$1" >"$2"
28 2ad4a6a2 2022-01-23 op
29 2ad4a6a2 2022-01-23 op exec ed "$2" <<EOF
30 2ad4a6a2 2022-01-23 op /<style>
31 2ad4a6a2 2022-01-23 op a
32 2ad4a6a2 2022-01-23 op body {
33 2ad4a6a2 2022-01-23 op max-width: 960px;
34 2ad4a6a2 2022-01-23 op margin: 0 auto;
35 2ad4a6a2 2022-01-23 op padding: 0 10px;
36 2ad4a6a2 2022-01-23 op font-size: 1rem;
37 2ad4a6a2 2022-01-23 op }
38 2ad4a6a2 2022-01-23 op
39 2ad4a6a2 2022-01-23 op pre {
40 2ad4a6a2 2022-01-23 op overflow: auto;
41 2ad4a6a2 2022-01-23 op }
42 2ad4a6a2 2022-01-23 op .
43 2ad4a6a2 2022-01-23 op wq
44 2ad4a6a2 2022-01-23 op EOF