katdown

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

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

commit af83279bbdc3ed6b135beb856988433670ea362d
parent 622a94f0e927a7087b6710c640ab6720bb6a1d48
Auteurice: Arthur Pons <arthur.pons@unistra.fr>
Date:   Mon,  3 Mar 2025 16:48:31 +0100

Indentation avec tabulations

Diffstat:
Mkatdown | 52++++++++++++++++++++++++++--------------------------
1 file changed, 26 insertions(+), 26 deletions(-)

diff --git a/katdown b/katdown @@ -21,45 +21,45 @@ inquote && !/^> / { print "</blockquote>"; inquote = 0; next } END { flushp(); flushtags() } function collect(v) { - line = line sep v - sep = " " + line = line sep v + sep = " " } function flush() { - if (line) { - print line - line = sep = "" - } + if (line) { + print line + line = sep = "" + } } function flushp() { - if (line) { - print "<p>" render(line) "</p>" - line = sep = "" - } + if (line) { + print "<p>" render(line) "</p>" + line = sep = "" + } } function render(line) { - if (match(line, /_(.*)_/)) { - gsub(/_(.*)_/, sprintf("<em>%s</em>", substr(line, RSTART+1, RLENGTH-2)), line) - } + if (match(line, /_(.*)_/)) { + gsub(/_(.*)_/, sprintf("<em>%s</em>", substr(line, RSTART+1, RLENGTH-2)), line) + } - if (match(line, /\*(.*)\*/)) { - gsub(/\*(.*)\*/, sprintf("<strong>%s</strong>", substr(line, RSTART+1, RLENGTH-2)), line) - } + if (match(line, /\*(.*)\*/)) { + gsub(/\*(.*)\*/, sprintf("<strong>%s</strong>", substr(line, RSTART+1, RLENGTH-2)), line) + } - if (match(line, /\[.+\]\(.+\)/)) { - inner = substr(line, RSTART+1, RLENGTH-2) - split(inner, spl, /\]\(/) - gsub(/\[.+\]\(.+\)/, sprintf("<a href=\"%s\">%s</a>", spl[2], spl[1]), line) - } + if (match(line, /\[.+\]\(.+\)/)) { + inner = substr(line, RSTART+1, RLENGTH-2) + split(inner, spl, /\]\(/) + gsub(/\[.+\]\(.+\)/, sprintf("<a href=\"%s\">%s</a>", spl[2], spl[1]), line) + } - return line + return line } function flushtags() { - if (inquote) print "</blockquote>" - if (inol) print "</ol>" - if (inul) print "</ul>" - if (inpre) print "</pre>" + if (inquote) print "</blockquote>" + if (inol) print "</ol>" + if (inul) print "</ul>" + if (inpre) print "</pre>" }