com.github.blueboxware.tocme
Owner: BlueBoxWare
Plugin to add Table of Contents to markdown documents and keeping them up to date
https://github.com/BlueBoxWare/TocMe
Sources: https://github.com/BlueBoxWare/TocMe.git
Version 1.8 (latest)
1.8
Created 14 October 2023.
Plugin to add Table of Contents to Markdown documents and keeping them up to date
Using the plugins DSL:
plugins {
id("com.github.blueboxware.tocme") version "1.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.blueboxware:tocme:1.8")
}
}
apply(plugin = "com.github.blueboxware.tocme")
Using the plugins DSL:
plugins {
id "com.github.blueboxware.tocme" version "1.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.blueboxware:tocme:1.8"
}
}
apply plugin: "com.github.blueboxware.tocme"