Last updated 1 year ago
A multiplatform library for parsing text and formatting it, designed to be framework independent.
Installation instructions are available
val mySyntakts = syntakts<Unit> { rule("@([A-z]+)") { matchResult, context -> append("@${matchResult.groupValues[1]}") { color = Color.Yellow } } } val nodes = mySyntakts.parse("Welcome, @User")