rf-web/vendor/bundle/gems/rouge-3.12.0/lib/rouge/lexers/biml.rb

44 lines
1023 B
Ruby
Raw Normal View History

2019-10-21 08:18:17 +00:00
# frozen_string_literal: true
module Rouge
module Lexers
load_lexer 'xml.rb'
class BIML < XML
title "BIML"
desc "BIML, Business Intelligence Markup Language"
tag 'biml'
filenames '*.biml'
def self.detect?(text)
return true if text =~ /<\s*Biml\b/
end
prepend :root do
rule %r(<#\@\s*)m, Name::Tag, :directive_tag
rule %r(<#[=]?\s*)m, Name::Tag, :directive_as_csharp
end
prepend :attr do
#TODO: how to deal with embedded <# tags inside a attribute string
#rule %r("<#[=]?\s*)m, Name::Tag, :directive_as_csharp
end
state :directive_as_csharp do
rule %r/\s*#>\s*/m, Name::Tag, :pop!
rule %r(.*?(?=\s*#>\s*))m do
delegate CSharp
end
end
state :directive_tag do
rule %r/\s+/m, Text
rule %r/[\w.:-]+\s*=/m, Name::Attribute, :attr
rule %r/\w+\s*/m, Name::Attribute
rule %r(/?\s*#>), Name::Tag, :pop!
end
end
end
end