Image in Kotlin Kdoc in Android

Viewed 152

In JavaDoc you can add an image like this:

/**
 * ...The following legend explains these diagrams:
 * <img width="640" height="577" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Completable.png" alt="">
 */
public class Test {
}

How can I achieve the same thing in Kotlin Kdoc?

0 Answers
Related