Skip to content

Commit e1fadeb

Browse files
Burak Emiradriaanm
Burak Emir
authored andcommitted
don't escape apos in xml
1 parent 7a210a3 commit e1fadeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/library/scala/xml/Utility.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ object Utility extends AnyRef with parsing.TokenTests {
4646
case '>' => s.append(">")
4747
case '&' => s.append("&")
4848
case '"' => s.append(""")
49-
case '\'' => s.append("'")
49+
//case '\'' => s.append("'") // is valid xhtml but not html, and IE doesn't know it, says jweb
5050
case _ => s.append(c)
5151
}
5252
s

0 commit comments

Comments
 (0)