com.github.johny65.simplemd
Owner: Juan Bertinetti
Simple plugin to convert Markdown files to HTML
https://github.com/johny65/gradle-simplemd-plugin
Sources: https://github.com/johny65/gradle-simplemd-plugin
Version 0.2 (latest)
0.2
Created 17 November 2020.
Simple plugin to convert Markdown files to HTML during the build process.
Using the plugins DSL:
plugins {
id("com.github.johny65.simplemd") version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.johny65:gradle-simplemd-plugin:0.2")
}
}
apply(plugin = "com.github.johny65.simplemd")
Using the plugins DSL:
plugins {
id "com.github.johny65.simplemd" version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.johny65:gradle-simplemd-plugin:0.2"
}
}
apply plugin: "com.github.johny65.simplemd"