Upload files to "java/markup"

This commit is contained in:
2026-04-13 10:47:09 +03:00
parent cd38cb319b
commit e6190c3bd0
5 changed files with 140 additions and 0 deletions

8
java/markup/Html.java Normal file
View File

@@ -0,0 +1,8 @@
package markup;
/**
* @author Nikita Doschennikov (me@fymio.us)
*/
public interface Html {
void toHtml(StringBuilder sb);
}