katdown

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

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

commit 4bd8e2992342cf2860f82f4ff3ef400164e96f55
parent 07d480870767279e16b9bfb3c6b529a6684ba906
Auteurice: Arthur Pons <arthur.pons@unistra.fr>
Date:   Mon,  3 Mar 2025 22:23:04 +0100

Intégration rendu paragraphes partout ailleurs

On peut maintenant mettre des liens, mettre du gras etc dans les listes,
les titres, les citations etc

Diffstat:
Mkatdown | 18+++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/katdown b/katdown @@ -1,4 +1,4 @@ -#! awk -f +#! /usr/bin/awk -f # # fork d'un script de Graham Marlow # https://mgmarlow.com/ @@ -9,27 +9,27 @@ inqpre && /^```/ { flush(); print "</code></pre>"; intqre = 0; next } /^```/ { print "<pre><code>"; inqpre = 1; next } intpre && /^ / { print substr ($0,2); next } -intpre && /^[^ ]/ { flush(); print "</code></pre>"; intpre = 0; } +intpre && /^[^ ]/ { flush(); print "</code></pre>"; intpre = 0 } /^ / { print "<pre><code>"; intpre = 1; print substr ($0,2); next } # TITRES # <hN> -/^# / { print "<h1>" substr($0, 3) "</h1>"; next } -/^## / { print "<h2>" substr($0, 4) "</h2>"; next } -/^### / { print "<h3>" substr($0, 5) "</h3>"; next } -/^#### / { print "<h4>" substr($0, 6) "</h4>"; next } +/^# / { print "<h1>" render(substr($0, 3)) "</h1>"; next } +/^## / { print "<h2>" render(substr($0, 4)) "</h2>"; next } +/^### / { print "<h3>" render(substr($0, 5)) "</h3>"; next } +/^#### / { print "<h4>" render(substr($0, 6)) "</h4>"; next } # LISTES # <ul> -/^ [-*] / { if (!inul) print "<ul>"; inul = 1; print "<li>" substr($0, 5) "</li>"; next } +/^ [-*] / { if (!inul) print "<ul>"; inul = 1; print "<li>" render(substr($0, 5)) "</li>"; next } inul && !/^ [-*] / { print "</ul>"; inul = 0; next } # <ol> -/^ [0-9]+\./ { if (!inol) print "<ol>"; inol = 1; print "<li>" substr($0, length($1)+4) "</li>"; next } +/^ [0-9]+\./ { if (!inol) print "<ol>"; inol = 1; print "<li>" render(substr($0, length($1)+4)) "</li>"; next } inol && !/^ [0-9]+\./ { print "</ol>"; inol = 0; next } # CITATIONS # <blockquote> -/^> / { if (!inquote) print "<blockquote>"; inquote = 1; print substr($0, 3); next } +/^> / { if (!inquote) print "<blockquote>"; inquote = 1; print render(substr($0, 3)); next } inquote && !/^> / { print "</blockquote>"; inquote = 0; next } # PARAGRAPHES