maybe this could be useful: ``` tasks.create<Co...
# kotlin-fuel
n
maybe this could be useful:
Copy code
tasks.create<Copy>("processMDTemplates") {
    group = "documentation"
    from(rootDir)
    include("**/*.template.md")
    filesMatching("**/*.template.md") {
        name = sourceName.substringBeforeLast(".template.md") + ".md"
        expand(
            "GRADLE_VERSION" to Gradle.version
        )
    }
    destinationDir = rootDir
}