From 61a0348e3897f06bc2049893b38a0922f90733de Mon Sep 17 00:00:00 2001 From: Simon Petit Date: Tue, 28 Jan 2025 16:09:58 +0100 Subject: [PATCH] adding replaceInline to unordered lists --- lib/markdown.awk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/markdown.awk b/lib/markdown.awk index 7fab0bb..05f9124 100755 --- a/lib/markdown.awk +++ b/lib/markdown.awk @@ -96,7 +96,7 @@ function closeOne() { env = last() if (env == "ul" ) { # In a unordered list block, print a new item - print "
  • " substr($0, 3) "
  • " + print "
  • " replaceInline(substr($0, 3)) "
  • " } else { # Otherwise, init the unordered list block push("ul")