From acb86d69f34483dbf3dce0f9748d3f1f01d0643b Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Sun, 20 Jun 2010 05:08:36 -0400 Subject: [PATCH] Apparently inline styles shouldn't be in comments now. --- collects/meta/web/html/html.rkt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/collects/meta/web/html/html.rkt b/collects/meta/web/html/html.rkt index ffe8940727..1f8fa1a61b 100644 --- a/collects/meta/web/html/html.rkt +++ b/collects/meta/web/html/html.rkt @@ -170,8 +170,7 @@ (provide style/inline) (define (style/inline . args) (let-values ([(attrs body) (attributes+body args)]) - (make-element 'style attrs - `("\n" ,(apply comment #:newlines? #t body) "\n")))) + (make-element 'style attrs `("\n" ,body "\n")))) ;; ---------------------------------------------------------------------------- ;; Entities