aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
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.