hconnect 0.2.0

A tool to establish a TCP connection to a host behind a proxy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
PROJECT=hconnect
PANDOC?=pandoc
PANDOCFLAGS?=--from markdown+tex_math_dollars --mathjax --to html5 --standalone --metadata pagetitle="${PROJECT}"

all:
	cargo clippy
	cargo fmt

%.html: %.md
	${PANDOC} ${PANDOCFLAGS} -o $@ $<

.PHONY: all