# File lib/ramaze/view/maruku.rb, line 6
      def self.call(action, string)
        string = File.read(action.view) if action.view
        maruku = View.compile(string){|s| ::Maruku.new(s) }
        html = maruku.to_html

        return html, 'text/html'
      end