module Erubis::PI::Converter

def convert(input)

def convert(input)
  code = super(input)
  return @header || @footer ? "#{@header}#{code}#{@footer}" : code
end