class Rouge::Lexers::Lasso

def self.detect?(text)

def self.detect?(text)
  return true if text.shebang?('lasso9')
  return true if text =~ /\A.*?<\?(lasso(script)?|=)/
end

def self.keywords

self-modifying method that loads the keywords file
def self.keywords
  Kernel::load File.join(Lexers::BASE_DIR, 'lasso/keywords.rb')
  keywords
end

def initialize(*)

def initialize(*)
  super
  @start_inline = bool_option(:start_inline)
end

def start_inline?

def start_inline?
  @start_inline
end