Search Gradle plugins

Version 1.1.0 (latest)

1.1.0

Created 05 November 2018.

Plugin to create PDF from MD based on the flexmark plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.fntsoftware.gradle.markdown-to-pdf") version "1.1.0"
}

See also:

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