txt2html

Converts plaintext to HTML
git clone git://src.gearsix.net/txt2html
Log | Files | Refs | Atom | README

commit b9bb0ef69ee533b953921073086807e759879312
parent ada0fe0d2fc2255d08d46b778ecb9c9da1fd0b8f
Author: gearsix <gearsix@tuta.io>
Date:   Tue,  2 Nov 2021 22:48:22 +0000

added quick & dirty Makefile; removed txt2html binary

Diffstat:
AMakefile | 4++++
Dtxt2html | 0
2 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -0,0 +1,4 @@ +all: + ${CC} -o txt2html txt2html.c node.c parse.c rules.c +debug: + ${CC} -g -o txt2html-debug txt2html.c node.c parse.c rules.c diff --git a/txt2html b/txt2html Binary files differ.