mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +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;
|
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
|
* 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.
|
* in the list is important. To show this, browsers automatically number the list.
|
||||||
|
|
Loading…
Reference in a new issue