Search Gradle plugins

org.uulib.gradle.markdown-lang

Adds a 'DocumentationSpec' component spec, 'MarkdownSourceSet' source set, and 'HtmlBinary' binarySpec to the Gradle software model. For each MarkdownSourceSet related to each HtmlBinary, a task is created that compiles markdown files in the source set into HTML files in the binary.

https://github.com/hWorblehat/grmarkdown

Sources: https://github.com/hWorblehat/grmarkdown

Version 0.0.1 (latest)

Created 05 August 2016.

Adds a 'DocumentationSpec' component spec, 'MarkdownSourceSet' source set, and 'HtmlBinary' binarySpec to the Gradle software model. For each MarkdownSourceSet related to each HtmlBinary, a task is created that compiles markdown files in the source set into HTML files in the binary.

Using the plugins DSL:

plugins {
  id("org.uulib.gradle.markdown-lang") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.uulib.gradle:grmarkdown:0.0.1")
  }
}

apply(plugin = "org.uulib.gradle.markdown-lang")

Using the plugins DSL:

plugins {
  id "org.uulib.gradle.markdown-lang" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.uulib.gradle:grmarkdown:0.0.1"
  }
}

apply plugin: "org.uulib.gradle.markdown-lang"

Learn how to apply plugins to subprojects