com.varabyte.kobwebx.markdown
                  Owner:
                  
                    
                    David Herman
                  
                
Adds markdown support to a Kobweb project.
Sources: https://github.com/varabyte/kobweb.git
Version 0.23.3 (latest)
Created 11 September 2025.
                Adds markdown support to a Kobweb project.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.varabyte.kobwebx.markdown") version "0.23.3"
}
              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("com.varabyte.kobwebx.markdown:com.varabyte.kobwebx.markdown.gradle.plugin:0.23.3") }It can then be applied in the precompiled script plugin:plugins { id("com.varabyte.kobwebx.markdown") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.varabyte.kobwebx.markdown:com.varabyte.kobwebx.markdown.gradle.plugin:0.23.3") } } apply(plugin = "com.varabyte.kobwebx.markdown") - Applying plugins to all subprojects .