We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Putting an unclosed character ref (&#) in XML causes an infinite loop. Example code:
&#
import scala.io.Source import scala.xml.parsing.XhtmlParser val text = "<html><body>test &# test </body></html>" XhtmlParser(Source.fromString(text))