Would someone know how I can use `f[var_]` in doc-...
# getting-started
h
Would someone know how I can use
f[var_]
in doc-comment in Kotlin? It naturally tries to resolve this. Do I really need to use html-specific character representation?
a
You could wrap it in a code block using backticks, and then it won’t try to resolve
var_
Copy code
```f[var_]```
h
@anthonycr Wow.. I was trying my ass off with html-code tags and stuff (coming from Java). Thanks that's nice.
a
Yeah, Kdocs support markdown, so it’s much nicer to use than html in javadoc