Evgeniy Zemtsov
05/18/2023, 12:19 PMbuildString {
appendHTML().b { +"Here is a list of users" }
append("\n\n")
for (user in users) {
appendHTML().b { +"${user.type}: "}
append("${user.login}\n")
}
}
Maybe anyone has a better example?