Java: handle type parameters correct when converting javadoc to markdown (IDEA-371810)

GitOrigin-RevId: 8d4692fc69d59cedd36b00229815ae69121acae0
This commit is contained in:
Bas Leijdekkers
2025-04-30 18:14:06 +00:00
committed by intellij-monorepo-bot
parent 83e5cfc9f6
commit a58f616609
3 changed files with 60 additions and 63 deletions
@@ -360,3 +360,11 @@ final class LookupWithIndentsBuilder {
/// - two
void x() {}
}
/// `test<b>`
/// @param <T> The _M_ type.
/// @param <B> The B type.
/// @param <P> The P type.
/// @param <I> The I type.
interface Foo<T, B, P, I>
{
}
@@ -381,3 +381,13 @@ final class LookupWithIndentsBuilder {
*/
void x() {}
}
<warning descr="Javadoc comment can be Markdown documentation comment">/**</warning>
* {@code test<b>}
* @param <T> The <em>M</em> type.
* @param <B> The B type.
* @param <P> The P type.
* @param <I> The I type.
*/
interface Foo<T, B, P, I>
{
}