1 2 3 4 5 6 7 8 9 10 11
package moe.nea.blog.md import java.io.PrintStream data class Italics(val inner: MarkdownFormat) : MarkdownFormat { override fun debugFormat(printStream: PrintStream) { printStream.print("<i>") inner.debugFormat(printStream) printStream.print("</i>") } }