aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDavid Barksdale <amatus.amongus@gmail.com>2013-03-13 14:35:42 -0500
committerDavid Barksdale <amatus.amongus@gmail.com>2013-03-13 14:35:42 -0500
commit6fa252d25b68262601ee855e3e79fe6fbabbd542 (patch)
tree3714d9c38f762caf4748009784dec6d94a65b760 /README.md
parentd0ea3c3b3a14b78334f2f866d4a926b26f15a8d8 (diff)
Update README.mdHEADmaster
Fixed example inputs and outputs.
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index e1754c9..236e299 100644
--- a/README.md
+++ b/README.md
@@ -7,8 +7,8 @@ development stack.
The Hiccup formatting language allows the description of HTML syntax trees in
a Lisp-like prefix notation based on Clojure's Vector literal denoted `[]`. In
-Hiccup one may say `[:a {:class "bar" :href "/"} "go home!"" ]`, which renders
-to the equivalent html `<a href="/" class="bar"> go home! </a>`. As you can see
+Hiccup one may say `[:a {:class "bar" :href "/"} "go home!" ]`, which renders
+to the equivalent html `<a class="bar" href="/">go home!</a>`. As you can see
this is a fairly regular translation and the Hiccup tool makes it easy to go from
Clojure to HTML. Decomp decomposes the expanded html into the Huccup-equivalent
vector stack, completing the round trip.