Search Gradle plugins

Version 0.2.7

0.2.7

Created 28 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.2.7"
}

See also:

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