Search Gradle plugins

com.github.blueboxware.tocme

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.blueboxware.tocme") version "1.8"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.blueboxware:tocme:1.8")
      }
    }
    
    apply(plugin = "com.github.blueboxware.tocme")
  • Applying plugins to all subprojects .