udeleng
udeleng

Reputation: 866

How to enable Markdown in IntelliJ?

I installed the IDEA-MARKDOWN in IntelliJ 13.1.5 and restarted. I Added some markdown to a class's javadocs, but I don't see a bold title when I press on the class name CTRL-Q, I only see the "H2 Title" in bold:

/**
 * ## H1 Title
 * <h2>H2 Title</h2>
 */
public class Test {

}

Upvotes: 5

Views: 4943

Answers (1)

Bas Leijdekkers
Bas Leijdekkers

Reputation: 26522

To properly render Markdown Javadoc comments, I think you need the Pegdown Doclet for IDEA plugin.

Upvotes: 6

Related Questions