Compare commits

...

2 Commits
dev ... master

Author SHA1 Message Date
adf285d723 forgot all lines of unordered lists
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-01-28 16:15:05 +01:00
61a0348e38 adding replaceInline to unordered lists
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-01-28 16:09:58 +01:00

View File

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