Un traducteur md -> html minimal en awk - retour accueil
git clone git://bebou.netlib.re/katdown
Log | Files | Refs | README |
commit d868fa059f297482100e8fdaf9e794c89436f388 Auteurice: Graham Marlow <graham@onesignal.com> Date: Sat, 2 Mar 2024 09:32:21 -0800 Initial commit Diffstat:
A | README.md | | | 28 | ++++++++++++++++++++++++++++ |
A | awkdown.awk | | | 39 | +++++++++++++++++++++++++++++++++++++++ |
2 files changed, 67 insertions(+), 0 deletions(-)
diff --git a/README.md b/README.md @@ -0,0 +1,28 @@ +# Awkdown + +A Markdown renderer written in Awk. + +## Usage + +``` +awk -f awkdown.awk README.md +``` + +## Demo + +### Subsection one + +**Todos:** + +- Buy trail mix +- Eat trail mix + +_numbered list_: + +1. Do one thing +2. Do another thing +3. Do the last thing + +> Deep in the human unconscious is a pervasive need for a logical +> universe that makes sense. But the real universe is always one step +> beyond logic. - Frank Herbert diff --git a/awkdown.awk b/awkdown.awk @@ -0,0 +1,39 @@ +BEGIN { + print "<!doctype html><html>" + print "<head>" + print " <meta charset=\"utf-8\">" + print " <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">" + print "</head>" + print "<body>" +} + +{ data[NR] = $0 } + +END { + for (i = 1; i <= NR; i++) + render_line(data[i]) + + # Flush any remaining open tags + if (inq) + render_line() + + print "</body>" + print "</html>" +} + +function render_line(line) { + if (line ~ /^# /) { + print "<h1>" substr(line, 3) "</h1>" + } else if (line ~ /^## /) { + print "<h2>" substr(line, 4) "</h2>" + } else if (line ~ /^> /) { + if (!inq) { + print "<blockquote>" + inq = 1 + } + print substr(line, 3) + } else if (line !~ /^> / && inq) { + print "</blockquote>" + inq = 0 + } +}