katdown

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

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

commit 1dabf347a8ad507b9eefc41ebece7a3248381ca6
parent 46e70418f03078a20a3e2c05b129224731a520ad
Auteurice: Arthur Pons <arthur.pons@unistra.fr>
Date:   Tue,  4 Mar 2025 10:29:49 +0100

Retrait de paranthèses inutiles dans les regex

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

diff --git a/katdown b/katdown @@ -66,16 +66,16 @@ function flushp() { } function render(line) { - while (match(line, /\*\*([^*]+)\*\*/)) { + while (match(line, /\*\*[^*]+\*\*/)) { sub(/\*\*([^*]+)\*\*/, sprintf("<strong>%s</strong>", substr(line, RSTART+2, RLENGTH-4)), line) } - while (match(line, /[*_]([^*_]+)[*_]/)) { - sub(/[*_]([^*_]+)[*_]/, sprintf("<em>%s</em>", substr(line, RSTART+1, RLENGTH-2)), line) + while (match(line, /[*_][^*_]+[*_]/)) { + sub(/[*_][^*_]+[*_]/, sprintf("<em>%s</em>", substr(line, RSTART+1, RLENGTH-2)), line) } - while (match(line, /`([^`]+)`/)) { - sub(/`([^`]+)`/, sprintf("<code>%s</code>", substr(line, RSTART+1, RLENGTH-2)), line) + while (match(line, /`[^`]+`/)) { + sub(/`[^`]+`/, sprintf("<code>%s</code>", substr(line, RSTART+1, RLENGTH-2)), line) } while (match(line, /\^[^ ]+( |$)/)) {