Upload files to "java/markup"

This commit is contained in:
2026-04-13 10:48:17 +03:00
parent 95c17f7dd2
commit 626e73d958

View 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}");
}
}