;; mif2html.ol -- convert Frame interchange format to HTML (require 'mifrw) (require 'html) (setq x [MifReader :new *standard-input*]) (setq z [HTML :new *standard-output*]) (setq y [MIF :new z]) [x :load y] [y :write-pages] (exit)