racket/collects/web-server/scribblings/faq.scrbl
Eli Barzilay 264af9a6d0 improved scribble syntax use
svn: r8720
2008-02-19 12:22:45 +00:00

14 lines
543 B
Racket

#lang scribble/doc
@(require "web-server.ss")
@title{Troubleshooting}
@section{General}
@subsection{IE ignores my CSS or behaves strange in other ways}
In quirks mode, IE does not parse your page as XML, in particular it will not recognize many instances of
"empty tag shorthand", e.g. "<img src='...' />", whereas the @web-server uses @scheme[(lib "xml.ss" "xml")]
to format XML, which uses empty tag shorthand by default. You can change the default with the @scheme[empty-tag-shorthand]
parameter: @scheme[(empty-tag-shorthand 'never)].