class Rouge::Lexers::Diff
def self.detect?(text)
def self.detect?(text) return true if text.start_with?('Index: ') return true if text =~ %r(\Adiff[^\n]*?\ba/[^\n]*\bb/) return true if text =~ /---.*?\n[+][+][+]/ || text =~ /[+][+][+].*?\n---/ end
def self.detect?(text) return true if text.start_with?('Index: ') return true if text =~ %r(\Adiff[^\n]*?\ba/[^\n]*\bb/) return true if text =~ /---.*?\n[+][+][+]/ || text =~ /[+][+][+].*?\n---/ end