diff --git a/README.md b/README.md
index 6589bcd..ee6b61f 100644
--- a/README.md
+++ b/README.md
@@ -25,6 +25,8 @@ Currently for my personal use. Future breaking changes possible.
# Example
+### Runtime HTML Serialization
+
```clojure
(require '[dev.onionpancakes.chassis.core :as c])
@@ -52,6 +54,38 @@ Currently for my personal use. Future breaking changes possible.
;; "
"
+```
+
# Usage
Require the namespace.
@@ -593,8 +627,6 @@ Use `cc/compile*` to ensure the return value is a vector. Otherwise, it is the s
;; [#object[dev.onionpancakes.chassis.core.RawString 0x24f1caeb ""]]
```
-
-
## Ambiguous Attributes Produce Speed Bumps
Ambiguous objects in the second position forces the compiler to emit checks which examine the potential attributes map at runtime.
@@ -602,6 +634,7 @@ Ambiguous objects in the second position forces the compiler to emit checks whic
```clojure
(let [data {:body "foo"}]
(pprint (macroexpand-1
+ ;; Compiler can't see what (:body data) returns.
'(cc/compile [:div (:body data)]))))
;; Results in: