adding replaceInline to unordered lists

This commit is contained in:
Simon Petit 2025-01-28 16:09:58 +01:00
parent a4d03c8e8d
commit 4468642cfb

View File

@ -96,7 +96,7 @@ function closeOne() {
env = last()
if (env == "ul" ) {
# In a unordered list block, print a new item
print "<li>" substr($0, 3) "</li>"
print "<li>" replaceInline(substr($0, 3)) "</li>"
} else {
# Otherwise, init the unordered list block
push("ul")