katdown

Un traducteur md -> html minimal en awk - retour accueil

git clone git://bebou.netlib.re/katdown
Log | Files | Refs | README |

commit 78fff02c5f8334434a35f9dbd58f04c7c9c26f88
parent bff6f586b1e431d6cf2efe30ad537a0f2ad050cb
Auteurice: Arthur Pons <arthur.pons@unistra.fr>
Date:   Mon,  3 Mar 2025 16:53:09 +0100

Amélioration des rendus lignes et modif syntaxe

Dorénavant plusieurs liens ou bold ou em sur une même ligne sont pris en
compte.

La syntaxe pour l'italique peut être _blabla_ ou *blabla*
La syntaxe pour le gras est **blabla**

Bug connu :

Les syntaxes dans la syntaxes : "*je veux tout * ça en italique*"

Diffstat:
Mkatdown | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/katdown b/katdown @@ -40,15 +40,15 @@ function flushp() { } function render(line) { - if (match(line, /_(.*)_/)) { - gsub(/_(.*)_/, sprintf("<em>%s</em>", substr(line, RSTART+1, RLENGTH-2)), line) + while (match(line, /\*\*([^*]+)\*\*/)) { + sub(/\*\*([^*]+)\*\*/, sprintf("<strong>%s</strong>", substr(line, RSTART+2, RLENGTH-4)), line) } - if (match(line, /\*(.*)\*/)) { - gsub(/\*(.*)\*/, sprintf("<strong>%s</strong>", substr(line, RSTART+1, RLENGTH-2)), line) + while (match(line, /[*_]([^*_]+)[*_]/)) { + sub(/[*_]([^*_]+)[*_]/, sprintf("<em>%s</em>", substr(line, RSTART+1, RLENGTH-2)), line) } - if (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)