Some checks failed
Fast Reverse Tests / test (push) Failing after 17s
Markup Tests / test (push) Failing after 13s
Reverse Tests / test (push) Failing after 13s
Sum Tests / test (push) Failing after 13s
Word Stat Tests / test (push) Failing after 13s
Word Stat++ Tests / test (push) Failing after 13s
7 lines
159 B
Java
7 lines
159 B
Java
package markup;
|
|
|
|
public interface MarkupElement {
|
|
void toMarkdown(StringBuilder sb);
|
|
void toHtml(StringBuilder sb);
|
|
void toTex(StringBuilder sb);
|
|
} |