/**
* Single line is converted {@link foo}
*
* Multi line is converted {@link
* foo}
*
* Single line with hash is converted {@link #foo}
*
* Multi line with has IS NOT converted {@link
* #foo}
*/
fun foo() = Unit
After:
/**
* Single line is converted [foo]
*
* Multi line is converted [foo]
*
* Single line with hash is converted [foo]
*
* Multi line with has IS NOT converted [
*
* #foo}
*/
fun foo() = Unit
Before:
After:
Using v1.5.4 with default options