1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-11-22 14:22:05 +01:00

Add XHTMLText.appendCloseLineItemTag()

This commit is contained in:
vito-c 2015-01-04 18:27:42 -08:00 committed by Florian Schmaus
parent f6144c553c
commit b77d61527c

View file

@ -239,6 +239,15 @@ public class XHTMLText {
return this;
}
/**
* Appends a tag that indicates that a line item section ends.
*
*/
public XHTMLText appendCloseLineItemTag() {
text.closeElement(LI);
return this;
}
/**
* Appends a tag that creates an ordered list. "Ordered" means that the order of the items
* in the list is important. To show this, browsers automatically number the list.