Converts a Gophermap to HTML2/RFC1866
 
 
 
Go to file
Shokara Kou 430d7a3825 mention awk in README 2023-01-14 23:42:55 -05:00
.gitignore license under ISC and add Makefile and README 2022-11-11 11:01:12 -05:00
LICENSE license under ISC and add Makefile and README 2022-11-11 11:01:12 -05:00
Makefile increase MAXLINE to 1024 characters from 120 2022-11-11 16:05:23 -05:00
README mention awk in README 2023-01-14 23:42:55 -05:00
gopher2html2.awk use TITLE envvar for setting <title> via awk 2023-01-14 23:38:46 -05:00
gopher2html2.c allow specifying filepath of gophermap instead of stdin 2023-01-05 12:38:36 -05:00

README

gopher2html2
============
Converts Gophermaps/RFC1436 to HTML2/RFC1866.

Dependencies
------------
- C89 compiler or any AWK
- POSIX environment to redirect stdin/out

Usage
-----
gopher2html2 <Gophermap >index.html
awk -f /path/to/gopher2html2.awk <Gophermap >index.html

or

gopher2html2 Gophermap >index.html
awk -f /path/to/gopher2html2.awk Gophermap >index.html