diff options
-rw-r--r-- | forth/gmi2html.fs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/forth/gmi2html.fs b/forth/gmi2html.fs index 9776334..5d75e87 100644 --- a/forth/gmi2html.fs +++ b/forth/gmi2html.fs @@ -1,6 +1,12 @@ \ 2022 - winduptoy.sensorstation.co \ PUBLIC DOMAIN +\ from: +\ https://winduptoy.sensorstation.co/gmi2html.fs + +\ usage: +\ cat gemtext.gmi | gforth gmi2html.fs > out.html + \ === HTML Output === \ : html-line-break ." <br>" ; @@ -161,4 +167,4 @@ variable capture-state gmi-to-html depth throw \ ensure stack is clean -bye \ No newline at end of file +bye |