mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-04-04 07:18:23 +00:00
fix: when the internal crystal highlighter fails, fallback to ruby. Fixes #13
This commit is contained in:
parent
b7e4aaa1f9
commit
ed61a84553
@ -350,6 +350,14 @@ module Tartrazine
|
|||||||
class CustomCrystalHighlighter < Crystal::SyntaxHighlighter
|
class CustomCrystalHighlighter < Crystal::SyntaxHighlighter
|
||||||
@tokens = [] of Token
|
@tokens = [] of Token
|
||||||
|
|
||||||
|
def highlight(text)
|
||||||
|
super
|
||||||
|
rescue ex : Crystal::SyntaxException
|
||||||
|
# Fallback to Ruby highlighting
|
||||||
|
Log.warn { "Highlighting as Ruby, Crystal syntax highlighting failed: #{ex.message}" }
|
||||||
|
@tokens = Tartrazine.lexer("ruby").tokenizer(text).to_a
|
||||||
|
end
|
||||||
|
|
||||||
def render_delimiter(&block)
|
def render_delimiter(&block)
|
||||||
@tokens << {type: "LiteralString", value: block.call.to_s}
|
@tokens << {type: "LiteralString", value: block.call.to_s}
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user