aboutsummaryrefslogtreecommitdiff
path: root/plugins/all-modules-page/src/main/kotlin/templates/Substitutor.kt
blob: 98f1d88ef3fde895db0f8672866c8ea5c831a4cc (plain)
1
2
3
4
5
6
7
package org.jetbrains.dokka.allModulesPage.templates

import org.jetbrains.dokka.base.templating.SubstitutionCommand

fun interface Substitutor {
    fun trySubstitute(context: TemplatingContext<SubstitutionCommand>, match: MatchResult): String?
}