update
This commit is contained in:
13
java/markup/UnorderedList.java
Normal file
13
java/markup/UnorderedList.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package markup;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author Nikita Doschennikov (me@fymio.us)
|
||||
*/
|
||||
public class UnorderedList extends AbstractList {
|
||||
|
||||
public UnorderedList(List<ListItem> items) {
|
||||
super(items, "ul", "\\begin{itemize}", "\\end{itemize}");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user