Tables in KDoc?
问题 We usually have changelog in our Java DTO's that consists of a table defined in Javadoc: /** * Changelog: * * <table> * <tr><th>Version</th><th>Description</th></tr> * <tr> * <td>2</td> * <td>Added field 'something'</td> * </tr> * <tr> * <td>3</td> * <td>Added field 'somethingElse'</td> * </tr> * </table> */ public class MyDTO { ... } This renders (in Intellij using Javadoc preview) nicely into something like this: Now we want to do the same thing for our Kotlin data classes. Reading up on