diff --git a/pollen/private/ts.rktd b/pollen/private/ts.rktd
index a9ff399..8459eb6 100644
--- a/pollen/private/ts.rktd
+++ b/pollen/private/ts.rktd
@@ -1 +1 @@
-1509919219
+1511198469
diff --git a/pollen/template/html.rkt b/pollen/template/html.rkt
index 2dd0e1f..58f11ca 100644
--- a/pollen/template/html.rkt
+++ b/pollen/template/html.rkt
@@ -11,8 +11,16 @@
(define (has-outer-splice-tag? x)
(and (pair? x) (eq? (get-tag x) splicing-tag)))
-(define+provide/contract (->html x-arg-maybe-spliced #:tag [tag #f] #:attrs [attrs #f] #:splice? [new-splice-arg? #f] #:splice [backward-compatible-splice-arg? #f])
- (((or/c txexpr-element? txexpr-elements?)) (#:tag (or/c #f txexpr-tag?) #:attrs (or/c #f txexpr-attrs?) #:splice? boolean? #:splice boolean?) . ->* . string?)
+(define+provide/contract (->html x-arg-maybe-spliced
+ #:tag [tag #f]
+ #:attrs [attrs #f]
+ #:splice? [new-splice-arg? #f]
+ #:splice [backward-compatible-splice-arg? #f])
+ (((or/c txexpr-element? txexpr-elements?))
+ (#:tag (or/c #f txexpr-tag?)
+ #:attrs (or/c #f txexpr-attrs?)
+ #:splice? boolean?
+ #:splice boolean?) . ->* . string?)
;; handle an outer splice tag specially, because `splice` will leave it
(define x-arg (if (has-outer-splice-tag? x-arg-maybe-spliced)
@@ -42,6 +50,7 @@
[else (xexpr->html x)]))
(module-test-external
+ (require txexpr)
(define tx '(root (p "hello")))
(check-equal? (->html tx) " hello hello