diff options
author | Filip Zybała <fzybala@virtuslab.com> | 2020-03-26 17:17:17 +0100 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-03-31 14:45:37 +0200 |
commit | c29d660242027eb23ff9c5d7c176eb188abcef74 (patch) | |
tree | e1189c600012f98f93815ee196f0e21498c50c7a /core/src/main/kotlin | |
parent | a8f8ac319de698528c04db9ebeceb986a8ced7f0 (diff) | |
download | dokka-c29d660242027eb23ff9c5d7c176eb188abcef74.tar.gz dokka-c29d660242027eb23ff9c5d7c176eb188abcef74.tar.bz2 dokka-c29d660242027eb23ff9c5d7c176eb188abcef74.zip |
Added platformTags rendering. Provided simple css classes. TODO adjust css, add onHover
Diffstat (limited to 'core/src/main/kotlin')
-rw-r--r-- | core/src/main/kotlin/pages/ContentNodes.kt | 9 |
1 files changed, 8 insertions, 1 deletions
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 { |