We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a210a3 commit e1fadebCopy full SHA for e1fadeb
src/library/scala/xml/Utility.scala
@@ -46,7 +46,7 @@ object Utility extends AnyRef with parsing.TokenTests {
46
case '>' => s.append(">")
47
case '&' => s.append("&")
48
case '"' => s.append(""")
49
- case '\'' => s.append("'")
+ //case '\'' => s.append("'") // is valid xhtml but not html, and IE doesn't know it, says jweb
50
case _ => s.append(c)
51
}
52
s
0 commit comments