Markdown plugin 0.1 available

Hello everyone,

It’s with great pleasure that I announce the first release of a markdown plugin for Gradle. This plugin is based on the amazing work Ted Naleid did for grails-markdown [http://grails.org/plugin/markdown].

Quick usage snippet

buildscript {
    repositories {
        mavenCentral()
        mavenRepo name: 'Bintray', url: 'http://dl.bintray.com/content/aalmiray/kordamp'
    }
    dependencies {
        classpath 'org.kordamp:markdown-gradle-plugin:0.1'
    }
}
apply plugin: 'markdown'

The plugin adds two new tasks: markdownToHtml and htmlToMarkdown. You can convert Markdown to HTML and back. More information about the plugin and its configuration options can be found at https://github.com/aalmiray/markdown-gradle-plugin

Keep on Groovying!