Skip to content

Instantly share code, notes, and snippets.

@dbushenko
Created September 22, 2011 20:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dbushenko/1235970 to your computer and use it in GitHub Desktop.
Save dbushenko/1235970 to your computer and use it in GitHub Desktop.
(ns webtest.core
(:require [pl.danieljanus.tagsoup :as ts]
[hiccup.core :as h]
[clojure.contrib.duck-streams :as io]))
(def data (slurp "data/data.html"))
(def parsed (ts/parse-string data))
(def generated (h/html parsed))
(io/spit "data/output.html" generated)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment