io.github.devcrocod.korro
Owner: Pavel Gorgulov
Inserts snippets code of Kotlin into markdown documents from source example files and tests.
https://github.com/devcrocod/korro
Sources: https://github.com/devcrocod/korro
Version 0.1.2
0.1.2
Created 23 February 2023.
Inserts snippets code of Kotlin into markdown documents from source example files and tests.
Using the plugins DSL:
plugins {
id("io.github.devcrocod.korro") version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.devcrocod:korro:0.1.2")
}
}
apply(plugin = "io.github.devcrocod.korro")
Using the plugins DSL:
plugins {
id "io.github.devcrocod.korro" version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.devcrocod:korro:0.1.2"
}
}
apply plugin: "io.github.devcrocod.korro"