I want to mention a layout in my Javadoc which converted from java to Kotlin. In java it was:
/**
* ... inside the {@link R.layout#view_main}
*/
which was clickable, but when I converted this class using android studio tools. It is changed to:
/**
* ... inside the [R.layout.view_main]
*/
which is not clickable. How can I make it clickable?