Search Gradle plugins

Version 0.3.0 (latest)

0.3.0

Created 29 October 2024.

Gradle plugin to convert markdown documents into a PDF!

Add this plugin to your build using the plugins DSL:

plugins {
  id("it.smartio.gradle.markdown") version "0.3.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("it.smartio:markdown:0.3.0")
      }
    }
    
    apply(plugin = "it.smartio.gradle.markdown")
  • Applying plugins to all subprojects .