diff options
Diffstat (limited to 'src/main/kotlin/moe/nea/blog/md/MarkdownFormat.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/blog/md/MarkdownFormat.kt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/blog/md/MarkdownFormat.kt b/src/main/kotlin/moe/nea/blog/md/MarkdownFormat.kt new file mode 100644 index 0000000..d647854 --- /dev/null +++ b/src/main/kotlin/moe/nea/blog/md/MarkdownFormat.kt @@ -0,0 +1,7 @@ +package moe.nea.blog.md + +import java.io.PrintStream + +interface MarkdownFormat : MarkdownElement { + fun debugFormat(printStream: PrintStream) +}
\ No newline at end of file |