Make formatter a bit more convenient

This commit is contained in:
2024-08-19 09:59:01 -03:00
parent bb952a44b8
commit ad92929a10
3 changed files with 7 additions and 3 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) : String
def format(text : String, lexer : Lexer, io : IO?) : String?
raise Exception.new("Not implemented")
end