From 148eeaa996c40414c7e59a0782b12e2bce21d2c5 Mon Sep 17 00:00:00 2001 From: David Young Date: Wed, 3 Jun 2020 15:42:25 +1200 Subject: [PATCH] Improve highlights --- scripts/markdown-to-markua.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/markdown-to-markua.sh b/scripts/markdown-to-markua.sh index 893c4c3..e51222a 100755 --- a/scripts/markdown-to-markua.sh +++ b/scripts/markdown-to-markua.sh @@ -19,7 +19,8 @@ do # Strip out mkdocs admonitions sed -i '/!!!/d' $file - + # Change highlights to bold underlines + sed -iE 's/==(.*)==/___\1___/' $file # strip emojis tr -cd '\11\12\15\40-\176' < $file > $file-clean