From ac7d021b6730f49c0bf316bd3b4b5336aacd57c9 Mon Sep 17 00:00:00 2001 From: David Young Date: Wed, 6 Jun 2018 21:42:35 +1200 Subject: [PATCH] Add Travis test 10 --- scripts/markdown-to-markua.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/markdown-to-markua.sh b/scripts/markdown-to-markua.sh index 3abed57..00b8414 100755 --- a/scripts/markdown-to-markua.sh +++ b/scripts/markdown-to-markua.sh @@ -1,3 +1,6 @@ #!/bin/bash -echo "Nananana... Batman!" > manuscript/test.md + +# Markua doesn't know what to do with 4 backticks (````), so convert to 3: +find manuscript -type f -name "*.md" -print0 | xargs -0 sed "s/````/```/g" + # Do nothing, yet. This is where the sed magic will go