aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorVadim Mishenev <vad-mishenev@yandex.ru>2022-07-29 23:20:02 +0300
committerGitHub <noreply@github.com>2022-07-29 23:20:02 +0300
commit018af7d18f50b0677a31714e29744ac2d8713c4f (patch)
treeccd6b441fd5b92cbc8087875e457a03279a41980 /core
parent7a875ee7d20b67725debd4c2c9e1f93e1889c302 (diff)
downloaddokka-018af7d18f50b0677a31714e29744ac2d8713c4f.tar.gz
dokka-018af7d18f50b0677a31714e29744ac2d8713c4f.tar.bz2
dokka-018af7d18f50b0677a31714e29744ac2d8713c4f.zip
Move source links into signature (#2476)
Diffstat (limited to 'core')
-rw-r--r--core/api/core.api1
-rw-r--r--core/src/main/kotlin/pages/ContentNodes.kt3
2 files changed, 3 insertions, 1 deletions
diff --git a/core/api/core.api b/core/api/core.api
index ffb96305..9f290fbd 100644
--- a/core/api/core.api
+++ b/core/api/core.api
@@ -4280,6 +4280,7 @@ public final class org/jetbrains/dokka/pages/TextStyle : java/lang/Enum, org/jet
public static final field Breakable Lorg/jetbrains/dokka/pages/TextStyle;
public static final field BreakableAfter Lorg/jetbrains/dokka/pages/TextStyle;
public static final field Cover Lorg/jetbrains/dokka/pages/TextStyle;
+ public static final field FloatingRight Lorg/jetbrains/dokka/pages/TextStyle;
public static final field Indented Lorg/jetbrains/dokka/pages/TextStyle;
public static final field InlineComment Lorg/jetbrains/dokka/pages/TextStyle;
public static final field Italic Lorg/jetbrains/dokka/pages/TextStyle;
diff --git a/core/src/main/kotlin/pages/ContentNodes.kt b/core/src/main/kotlin/pages/ContentNodes.kt
index 59364af9..07ff1159 100644
--- a/core/src/main/kotlin/pages/ContentNodes.kt
+++ b/core/src/main/kotlin/pages/ContentNodes.kt
@@ -383,7 +383,8 @@ enum class TokenStyle : Style {
enum class TextStyle : Style {
Bold, Italic, Strong, Strikethrough, Paragraph,
- Block, Span, Monospace, Indented, Cover, UnderCoverText, BreakableAfter, Breakable, InlineComment, Quotation
+ Block, Span, Monospace, Indented, Cover, UnderCoverText, BreakableAfter, Breakable, InlineComment, Quotation,
+ FloatingRight
}
enum class ContentStyle : Style {