Searched refs:ContentKeyword (Results 1 – 5 of 5) sorted by relevance
71 data class ContentKeyword(val text: String) : ContentNode { dataClass197 fun ContentBlock.keyword(value: String) = append(ContentKeyword(value)) in ContentBlock()
208 is ContentKeyword -> result.add(TextTag(holder, ContentText(node.text))) // TODO in buildInlineTags()
134 is ContentKeyword -> appendKeyword(content.text) in <lambda>()
887 is ContentKeyword -> sb.appendWith(content.text) in addContentNodeToStringBuilder()
58 is ContentKeyword -> span("keyword") { +content.text } in <lambda>()