it.smartio.gradle.markdown
Owner: Maxwell
The plugin allows to convert markdown in a PDF manual
Sources: https://github.com/territorium/markdown.git
Version 0.3.0 (latest)
0.3.0
Created 29 October 2024.
Gradle plugin to convert markdown documents into a PDF!
Using the plugins DSL:
plugins {
id("it.smartio.gradle.markdown") version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("it.smartio:markdown:0.3.0")
}
}
apply(plugin = "it.smartio.gradle.markdown")
Using the plugins DSL:
plugins {
id "it.smartio.gradle.markdown" version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "it.smartio:markdown:0.3.0"
}
}
apply plugin: "it.smartio.gradle.markdown"