From a3c4e0a82d5b56e280cbf72af2ecf5a990b1f577 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 12 Mar 2025 18:12:53 -0400 Subject: Rename `without_escaping()` -> `from_text()` --- examples/colorful/README.md | 2 +- examples/colorful/colorful.tm | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'examples/colorful') diff --git a/examples/colorful/README.md b/examples/colorful/README.md index e0572bac..5f6ef8a4 100644 --- a/examples/colorful/README.md +++ b/examples/colorful/README.md @@ -76,7 +76,7 @@ lang Markdown: $/*{..}*/="@(i:\1)", $/[?](?)/="@(blue,underline:\1)", }) - return Colorful.without_escaping(text) + return Colorful.from_text(text) func colorful(md:Markdown -> Colorful): return $Colorful"$md" diff --git a/examples/colorful/colorful.tm b/examples/colorful/colorful.tm index bcc95eb8..e5baf4ac 100644 --- a/examples/colorful/colorful.tm +++ b/examples/colorful/colorful.tm @@ -9,10 +9,10 @@ CSI := "$\033[" lang Colorful: convert(text:Text -> Colorful): text = text:replace_all({$/@/="@(at)", $/(/="@(lparen)", $/)/="@(rparen)"}) - return Colorful.without_escaping(text) + return Colorful.from_text(text) - convert(i:Int -> Colorful): return Colorful.without_escaping("$i") - convert(n:Num -> Colorful): return Colorful.without_escaping("$n") + convert(i:Int -> Colorful): return Colorful.from_text("$i") + convert(n:Num -> Colorful): return Colorful.from_text("$n") func for_terminal(c:Colorful -> Text): return CSI ++ "m" ++ _for_terminal(c, _TermState()) @@ -23,7 +23,7 @@ lang Colorful: func main(texts:[Text], files=[:Path], by_line=no): for i,text in texts: - colorful := Colorful.without_escaping(text) + colorful := Colorful.from_text(text) colorful:print(newline=no) if i == texts.length: say("") else: say(" ", newline=no) @@ -34,10 +34,10 @@ func main(texts:[Text], files=[:Path], by_line=no): for file in files: if by_line: for line in file:by_line() or exit("Could not read file: $(file.text)"): - colorful := Colorful.without_escaping(line) + colorful := Colorful.from_text(line) colorful:print() else: - colorful := Colorful.without_escaping(file:read() or exit("Could not read file: $(file.text)")) + colorful := Colorful.from_text(file:read() or exit("Could not read file: $(file.text)")) colorful:print(newline=no) @@ -169,7 +169,7 @@ func _add_ansi_sequences(text:Text, prev_state:_TermState -> Text): else if text == "@" or text == "at": return "@" parts := ( text:matches($/{0+..}:{0+..}/) or - return "@("++_for_terminal(Colorful.without_escaping(text), prev_state)++")" + return "@("++_for_terminal(Colorful.from_text(text), prev_state)++")" ) attributes := parts[1]:split($/{0+space},{0+space}/) new_state := prev_state -- cgit v1.2.3