Reputation: 866
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
Reputation: 26522
To properly render Markdown Javadoc comments, I think you need the Pegdown Doclet for IDEA plugin.
Upvotes: 6