Merge pull request #318 from vanitasvitae/xhtml_fix

SMACK-868: Fix XHTMLText producing invalid XML
This commit is contained in:
Florian Schmaus 2019-05-06 22:56:01 +02:00 committed by GitHub
commit 7980e2cedb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ public class XHTMLText {
private XHTMLText appendOpenBodyTag(String style, String lang) { private XHTMLText appendOpenBodyTag(String style, String lang) {
text.halfOpenElement(Message.BODY); text.halfOpenElement(Message.BODY);
text.xmlnsAttribute(NAMESPACE); text.xmlnsAttribute(NAMESPACE);
text.optElement(STYLE, style); text.optAttribute(STYLE, style);
text.xmllangAttribute(lang); text.xmllangAttribute(lang);
text.rightAngleBracket(); text.rightAngleBracket();
return this; return this;