Upload files to "java/md2html"

This commit is contained in:
2026-04-13 10:45:43 +03:00
parent 398c8c1929
commit 035e3d4838
5 changed files with 111 additions and 0 deletions

11
java/md2html/Del.java Normal file
View File

@@ -0,0 +1,11 @@
package md2html;
import java.util.List;
import markup.*;
public class Del extends AbstractMarkup implements PartOfParagraph {
public Del(List<PartOfParagraph> items) {
super(items, "}}", "del", "", "");
}
}