com.rfksystems.gmdoc
Owner:
Matiss Treinis
Generate documentation site from markdown, with Twig-syntax templating support
https://github.com/rfksystems/gmdoc
Version 1.0.1 (latest)
Created 20 July 2018.
Generate documentation site from markdown, with Twig-syntax templating support
Using the plugins DSL:
plugins {
id("com.rfksystems.gmdoc") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.rfksystems:gmdoc:1.0.1")
}
}
apply(plugin = "com.rfksystems.gmdoc")
Using the plugins DSL:
plugins {
id "com.rfksystems.gmdoc" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.rfksystems:gmdoc:1.0.1"
}
}
apply plugin: "com.rfksystems.gmdoc"