# File lib/rouge/lexers/apache.rb, line 22
      def name_for_token(token, kwtype, tktype)
        if self.class.keywords[kwtype].include? token
          tktype
        else
          Text
        end
      end