class Rouge::Lexers::Haskell

Public Class Methods

detect?(text) click to toggle source
# File lib/rouge/lexers/haskell.rb, line 14
def self.detect?(text)
  return true if text.shebang?('runhaskell')
end