Search Gradle plugins

Version 0.2.1 (latest)

0.2.1

Created 23 November 2021.

Compile Markdown to PDF using Gradle.

Add this plugin to your build using the plugins DSL:

plugins {
  id("nl.martijndwars.markdown") version "0.2.1"
}

See also:

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