Abnaxos / markdown-doclet

A Doclet that allows the use of Markdown in JavaDoc comments.
GNU General Public License v3.0
319 stars 40 forks source link

1.2 does not work #55

Open hrstoyanov opened 8 years ago

hrstoyanov commented 8 years ago

I am new to this doclet. I followed the documentation and put just this in my Gradle build file:

buildscript {
    repositories {
        mavenCentral() 
        jcenter()
    }
    dependencies {
        classpath "ch.raffael.pegdown-doclet:pegdown-doclet:${pegdown_doclet_version}"
    }
}
apply plugin: 'ch.raffael.pegdown-doclet'

... and the generated javadocs show that it is not kicking in. I see other people do configurations and additional settings. Is this really necessary?

hrstoyanov commented 8 years ago

Well .. what is the latest version actually? Is it 1.2 as the README.md says?

Abnaxos commented 8 years ago

1.3 is the latest version, actually. Try that first (or 1.2.1).

The Gradle plugin only covers the most simple cases and doing it manually isn't complicated neither (see the configuration for Maven, just set the doclet in the Javadoc configuration).

I'll look into it if it doesn't work with a newer version.

hrstoyanov commented 8 years ago

Please fix the home page then . Yesterday it showed the cradle example with 1.2 which is the reason I had issues. With 1.3 it seems to work. Thanks

/Hristo Stoyanov On May 21, 2016 11:43 PM, "Raffael Herzog" notifications@github.com wrote:

1.3 is the latest version, actually. Try that first (or 1.2.1).

The Gradle plugin only covers the most simple cases and doing it manually isn't complicated neither (see the configuration for Maven, just set the doclet in the Javadoc configuration).

I'll look into it if it doesn't work with a newer version.

— You are receiving this because you authored the thread. Reply to this email directly or view it on GitHub https://github.com/Abnaxos/pegdown-doclet/issues/55#issuecomment-220817195