blob: 4b60963f4b0885f3130dbbb23397425794186d94 (
plain)
1
2
3
4
5
6
7
|
package moe.nea.blog.md
interface InlineParser {
fun detect(lookback: MarkdownFormat, rest: String): Boolean
val specialSyntax: Set<Char>
fun parse(parser: MarkdownParser, text: String): Pair<MarkdownFormat, String>
}
|