I'm using Jsoup to parse and modify some HTML. In certain places, I want to add a non-breaking space entity ( ) to the HTML. I assumed I could do it as in this simplified example:
Element paragraph = someDocument.select("p").first();
paragraph.text("First sentence. Second sentence.");
But Jsoup turns my into   effectively encoding the ampersand itself. I guess my real question is: how can I manually write an ampersand character to the text of an Element?