From 1ed1f680a7f4ad57584b1c95c8a84b640e23b5cb Mon Sep 17 00:00:00 2001 From: mivirl <> Date: Wed, 4 Oct 2023 02:45:11 +0000 Subject: [PATCH] Switch to cmark from markdown --- create-repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create-repo b/create-repo index f70ea27..8e23d83 100755 --- a/create-repo +++ b/create-repo @@ -18,7 +18,7 @@ git init --bare cat << EOF > hooks/post-receive #!/bin/sh -git cat-file blob HEAD:README.md | markdown > $GIT_DIR/README.html +git cat-file blob HEAD:README.md | cmark > README.html EOF chmod +x hooks/post-receive -- 2.39.5