Upload files to "java/md2html"

This commit is contained in:
2026-04-13 10:46:04 +03:00
parent 035e3d4838
commit 093914fb1c
5 changed files with 645 additions and 0 deletions

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

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