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:
parent
f6144c553c
commit
b77d61527c
1 changed files with 9 additions and 0 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue