#! /usr/bin/env arc (import nuit/nuit-parse) (def html-encode (x) x) (def to-html (x) (if (isa x 'string) (string "
" (html-encode x) "
") (string ""))) (w/infile f car.script-args (prn "" "" "" "" "" (string:map to-html (nuit-parse f)) "" ""))