From: Paul Hänsch Date: Wed, 13 Aug 2025 05:20:59 +0000 (+0200) Subject: Squashed 'cgilite/' changes from b7f8f3d1..1ac47c1f X-Git-Url: https://git.plutz.net//?a=commitdiff_plain;h=8560906bf031219f7fe12f3fa5e80eb1178c5f6c;p=shellwiki Squashed 'cgilite/' changes from b7f8f3d1..1ac47c1f 1ac47c1f fix bidirectional arrow git-subtree-dir: cgilite git-subtree-split: 1ac47c1fc5f20832245d950b67f6be8f8da4172d --- diff --git a/markdown.awk b/markdown.awk index 0ad72f4..744bcba 100755 --- a/markdown.awk +++ b/markdown.awk @@ -361,7 +361,7 @@ function inline( line, LOCAL, len, text, code, href, guard, ret ) { ret = ret "-->"; line = substr(line, 4); continue; } else if ( line ~ /^<->( |$)/) { - ret = ret "↔"; line = substr(line, 3); + ret = ret "↔"; line = substr(line, 4); continue; } else if ( line ~ /^<-( |$)/) { ret = ret "←"; line = substr(line, 3);