blob: 3bebf84a7fd812dbbe9ef6a5a9247999be108198 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package moe.nea.blog.md
import java.io.PrintStream
data class Image(val source: String, val alt: MarkdownFormat?) : MarkdownFormat {
override fun debugFormat(printStream: PrintStream) {
printStream.print("<image source=$source>")
alt?.debugFormat(printStream)
printStream.print("</image>")
}
}
|