diff options
author | Kamil Doległo <kamilok1965@interia.pl> | 2020-02-26 17:04:53 +0100 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-02-27 10:51:51 +0100 |
commit | 3aadd4c85e55ab8321bd3230ffd975cc85e394a8 (patch) | |
tree | 41d47b243b6dfc1d6dbedb53b3972a606c548513 /core/src/main/kotlin | |
parent | f2c477f4f7126d462e1e42a6118355431bff9af6 (diff) | |
download | dokka-3aadd4c85e55ab8321bd3230ffd975cc85e394a8.tar.gz dokka-3aadd4c85e55ab8321bd3230ffd975cc85e394a8.tar.bz2 dokka-3aadd4c85e55ab8321bd3230ffd975cc85e394a8.zip |
Remove unneeded DSLMarker, fix bugs in PageCreator, add new ContentKinds
Diffstat (limited to 'core/src/main/kotlin')
-rw-r--r-- | core/src/main/kotlin/pages/ContentNodes.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/kotlin/pages/ContentNodes.kt b/core/src/main/kotlin/pages/ContentNodes.kt index 7cf0e7b8..d6d6f17c 100644 --- a/core/src/main/kotlin/pages/ContentNodes.kt +++ b/core/src/main/kotlin/pages/ContentNodes.kt @@ -119,7 +119,7 @@ interface Style interface Kind enum class ContentKind : Kind { - Comment, Functions, Parameters, Properties, Classes, Packages, Symbol, Sample, Main + Comment, Constructors, Functions, Parameters, Properties, Classlikes, Packages, Symbol, Sample, Main } enum class TextStyle : Style { |