mdoc

Generates a fully-formed HTML document from Markdown using cmark.
git clone git://src.gearsix.net/mdoc
Log | Files | Refs | Atom | README

commit 0febcaacf63ae87bf1365bf525223d3f3bc5db0d
parent 7834fa3a036cda21ffcdda466ad1d4acd50ec22f
Author: gearsix <gearsix@tuta.io>
Date:   Thu, 10 Mar 2022 17:39:29 +0000

removed newline from usage

Diffstat:
Mmdoc.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mdoc.c b/mdoc.c @@ -8,7 +8,7 @@ void usage() { - puts("usage: ./mdoc TITLE AUTHOR < file.md > file.html\n"); + puts("usage: ./mdoc TITLE AUTHOR < file.md > file.html"); } void printhead(const char *title, const char *author)