xxfast
01/03/2022, 11:05 PMwe can <u>underline</u>,<b>bold</b> or <i>hyphenate</i>
in commonMain
?nkiesel
01/03/2022, 11:16 PMfun String.u() = "<u>$this</u>"
fun String.b() = "<b>$this</b>"
fun String.i() = "<i>$this</i>"
"we can ${"underline".u()},${"bold".b()} or ${"hyphenate".i()}"