From c29d660242027eb23ff9c5d7c176eb188abcef74 Mon Sep 17 00:00:00 2001 From: Filip ZybaƂa Date: Thu, 26 Mar 2020 17:17:17 +0100 Subject: Added platformTags rendering. Provided simple css classes. TODO adjust css, add onHover --- core/src/main/kotlin/pages/ContentNodes.kt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'core/src/main/kotlin') diff --git a/core/src/main/kotlin/pages/ContentNodes.kt b/core/src/main/kotlin/pages/ContentNodes.kt index 46a71bc0..03014530 100644 --- a/core/src/main/kotlin/pages/ContentNodes.kt +++ b/core/src/main/kotlin/pages/ContentNodes.kt @@ -167,7 +167,14 @@ interface Style interface Kind enum class ContentKind : Kind { - Comment, Constructors, Functions, Parameters, Properties, Classlikes, Packages, Symbol, Sample, Main, BriefComment, Empty + Comment, Constructors, Functions, Parameters, Properties, Classlikes, Packages, Symbol, Sample, Main, BriefComment, Empty; + + companion object{ + fun shouldBePlatformTagged(kind: Kind) : Boolean { + val platformTagged = listOf(Constructors, Functions, Parameters, Properties, Classlikes, Packages) + return platformTagged.contains(kind) + } + } } enum class TextStyle : Style { -- cgit