Make formatter a bit more convenient

This commit is contained in:
2024-08-19 11:20:08 -03:00
parent 4a598a575b
commit 57e63f2308
4 changed files with 4 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ module Tartrazine
property theme : Theme = Tartrazine.theme("default-dark")
# Format the text using the given lexer.
def format(text : String, lexer : Lexer, io : IO?) : String?
def format(text : String, lexer : Lexer, io : IO? = nil) : String?
raise Exception.new("Not implemented")
end