summaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/blog/md/LinePreProcessor.kt
blob: cb9d81f88768727ebc26689640f9252927d0d96e (plain)
1
2
3
4
5
package moe.nea.blog.md

interface LinePreProcessor {
    fun preprocess(lineIndex: Int, line: String): String?
}