net.cornergraf.mdtowebdoc
Owner: Eckhart Pedersen
Gradle plugin to create nice web documentation pages from markdown.
https://github.com/cornergraf/MarkdownToWebDoc
Sources: https://github.com/cornergraf/MarkdownToWebDoc
Version 1.0-SNAPSHOT (latest)
Created 10 June 2017.
Gradle plugin to create nice web documentation pages from markdown.
Add this plugin to your build using the plugins DSL:
plugins {
id("net.cornergraf.mdtowebdoc") version "1.0-SNAPSHOT"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("net.cornergraf.mdtowebdoc:net.cornergraf.mdtowebdoc.gradle.plugin:1.0-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("net.cornergraf.mdtowebdoc") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.cornergraf.mdtowebdoc:net.cornergraf.mdtowebdoc.gradle.plugin:1.0-SNAPSHOT") } } apply(plugin = "net.cornergraf.mdtowebdoc")
- Applying plugins to all subprojects .