From: mivirl <> Date: Wed, 4 Oct 2023 02:45:11 +0000 (+0000) Subject: Switch to cmark from markdown X-Git-Url: http://mivirl.dev/git/?a=commitdiff_plain;h=1ed1f680a7f4ad57584b1c95c8a84b640e23b5cb;p=git-shell-commands.git Switch to cmark from markdown --- 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