# # File 'nil.rb' created on 18 mar 2008 at 12:41:27. # # See 'dokkit.rb' or +LICENSE+ for licence information. # # (C) 2008 Andrea Fazzi (and contributors). # require 'dokkit/filters/base' require 'dokkit/filters' module Dokkit module Filters class Nil < Base def filter(text) text end end end end Dokkit::Filters.register('nil') { Dokkit::Filters::Nil.new }