Un traducteur md -> html minimal en awk - retour accueil
git clone git://bebou.netlib.re/katdown
Log | Files | Refs | README |
commit 0c0e68c658d75f82f79c478bf058dd1bb1aac567 parent c52cf9ed415112c07d280c6cd8d505e7e6746070 Auteurice: Arthur Pons <arthur.pons@unistra.fr> Date: Mon, 3 Mar 2025 18:39:23 +0100 Ajout de commentaires Diffstat:
M | katdown | | | 17 | +++++++++++++++++ |
1 file changed, 17 insertions(+), 0 deletions(-)
diff --git a/katdown b/katdown @@ -3,23 +3,40 @@ # fork d'un script de Graham Marlow # https://mgmarlow.com/ +# 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 } + +# BLOCS DE CODE +# <pre> /^---+$/ { print "<hr />"; next } inqpre && /^```/ { flush(); print "</pre>"; intqre = 0; next } /^```/ { print "<pre>"; inqpre = 1; next } intpre && /^ / { print substr ($0,1); next } intpre && /^[^ ]/ { flush(); print "</pre>"; intpre = 0; print substr($0,1); next } /^ / { print "<pre>"; intpre = 1; print substr ($0,1); next } + +# LISTES +# <ul> /^ [-*] / { if (!inul) print "<ul>"; inul = 1; print "<li>" 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 } inol && !/^ [0-9]+\./ { print "</ol>"; inol = 0; next } + +# CITATIONS +# <blockquote> /^> / { if (!inquote) print "<blockquote>"; inquote = 1; print substr($0, 3); next } inquote && !/^> / { print "</blockquote>"; inquote = 0; next } + +# PARAGRAPHES +# <p> /./ { for (i=1; i<=NF; i++) collect($i) } + +# VIDE /^$/ { flushp() } END { flushp(); flushtags() }