Minor fixes

This commit is contained in:
Bruce Hill 2025-04-02 02:10:21 -04:00
parent 4df28edaf0
commit 9342faa510
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ func main():
= "???"
>> path:parent():child("other-file.txt")
= /???
= (/???)
>> dir := (/tmp/test-*.txt):glob()
= [???]

View File

@ -5,7 +5,7 @@ lang HTML:
# Custom escaping rules can be created with `convert`
convert(t:Text -> HTML):
t = t:replace_all({$/&/="&amp;", $/</="&lt;", $/>/="&gt;"})
t = t:translate({"&"="&amp;", "<"="&lt;", ">"="&gt;"})
return HTML.from_text(t)
func paragraph(content:HTML -> HTML):