Un traducteur md -> html minimal en awk - retour accueil
git clone git://bebou.netlib.re/katdown
Log | Files | Refs | README |
commit bff6f586b1e431d6cf2efe30ad537a0f2ad050cb parent af83279bbdc3ed6b135beb856988433670ea362d Auteurice: Arthur Pons <arthur.pons@unistra.fr> Date: Mon, 3 Mar 2025 16:49:48 +0100 Ajout de nouvelles syntaxes * les hr peuvent-être arbitrairement longs * les pre peuvent commencer par des tabulations (ça fonctionne pas) * les listes pas ordonnées peuvent commencer par des * * les listes ordonnées doivent comporter un point littéral . et pas n'importe quel caractère suivant un chiffre (c'était un bug dans l'original) Diffstat:
M | katdown | | | 32 | ++++++++++++++++---------------- |
1 file changed, 16 insertions(+), 16 deletions(-)
diff --git a/katdown b/katdown @@ -3,22 +3,22 @@ # fork d'un script de Graham Marlow # https://mgmarlow.com/ -/^# / { 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 "<hr />"; next } -inpre && /^```/ { flush(); print "</pre>"; inpre = 0; next } -/^```/ { print "<pre>"; inpre = 1; next } -/^-/ { if (!inul) print "<ul>"; inul = 1; print "<li>" substr($0, 3) "</li>"; next } -inul && !/^-/ { print "</ul>"; inul = 0; next } -/^[0-9]+./ { if (!inol) print "<ol>"; inol = 1; print "<li>" substr($0, length($1)+2) "</li>"; next } -inol && !/^[0-9]+./ { print "</ol>"; inol = 0; next } -/^> / { if (!inquote) print "<blockquote>"; inquote = 1; print substr($0, 3); next } -inquote && !/^> / { print "</blockquote>"; inquote = 0; next } -/./ { for (i=1; i<=NF; i++) collect($i) } -/^$/ { flushp() } -END { flushp(); flushtags() } +/^# / { 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 "<hr />"; next } +inpre && /^```|^ / { flush(); print "</pre>"; inpre = 0; next } +/^```|^ / { print "<pre>"; inpre = 1; next } +/^ [-*] / { if (!inul) print "<ul>"; inul = 1; print "<li>" substr($0, 5) "</li>"; next } +inul && !/^ [-*] / { print "</ul>"; inul = 0; next } +/^ [0-9]+\./ { if (!inol) print "<ol>"; inol = 1; print "<li>" substr($0, length($1)+4) "</li>"; next } +inol && !/^ [0-9]+\./ { print "</ol>"; inol = 0; next } +/^> / { if (!inquote) print "<blockquote>"; inquote = 1; print substr($0, 3); next } +inquote && !/^> / { print "</blockquote>"; inquote = 0; next } +/./ { for (i=1; i<=NF; i++) collect($i) } +/^$/ { flushp() } +END { flushp(); flushtags() } function collect(v) { line = line sep v