Un traducteur md -> html minimal en awk - retour accueil
git clone git://bebou.netlib.re/katdown
Log | Files | Refs | README |
commit a4b19654a022175199d91dca8faa5d9afdab0887 parent 6c9e241eb444d0db3929aa8ae9b5b5168a92d93a Auteurice: Arthur Pons <arthur.pons@unistra.fr> Date: Mon, 3 Mar 2025 19:54:03 +0100 Gestion de plusieurs liens par ligne Similaire à ce que l'on avait fait pour les autres syntaxes Diffstat:
M | katdown | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/katdown b/katdown @@ -76,10 +76,10 @@ function render(line) { sub(/\^[^^]+[ $]/, sprintf("<sup>%s</sup> ", substr(line, RSTART+1, RLENGTH-2)), line) } - while (match(line, /\[.+\]\(.+\)/)) { + while (match(line, /\[[^]]+\]\([^)]+\)/)) { inner = substr(line, RSTART+1, RLENGTH-2) split(inner, spl, /\]\(/) - gsub(/\[.+\]\(.+\)/, sprintf("<a href=\"%s\">%s</a>", spl[2], spl[1]), line) + sub(/\[[^]]+\]\([^)]+\)/, sprintf("<a href=\"%s\">%s</a>", spl[2], spl[1]), line) } return line