[Kotlin/dokka] New comment by semoro on issue <#13...
# dokka
u
[Kotlin/dokka] New comment by semoro on issue #130: Escaping markup You can just use markdown code blocks with markdown inside
Copy code
/**
• Will tokenize a String using commas as the default delimiter.
• All leading and trailing whitespace is trimmed. All whitespace
• within the String are ignored in the tokenization process. For
• an example we get that `"iname rd, rs, rt".tokenize()` yields
• `["iname", "rd", "rs", "rt"]` and that `"10($t0)".tokenize("(")`
• yields `["10", "$t0"]`
• 
• @param delimiter the character that delimits tokens
     */
http://spec.commonmark.org/0.27/#example-88