diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2018-05-07 17:28:22 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2018-07-14 23:57:12 +0300 |
commit | 4301503416ed45783a81250295adf4b5a86c4280 (patch) | |
tree | 43eb496b69803e2bab70c083420064ec28952fd3 /core/src/main/kotlin/Model | |
parent | 44ad68386658dde985207ea0aedb19c96d9b3f93 (diff) | |
download | dokka-4301503416ed45783a81250295adf4b5a86c4280.tar.gz dokka-4301503416ed45783a81250295adf4b5a86c4280.tar.bz2 dokka-4301503416ed45783a81250295adf4b5a86c4280.zip |
[backport] KT-24299: Fix local links resolved in incorrect context
Original: fababd4
Diffstat (limited to 'core/src/main/kotlin/Model')
-rw-r--r-- | core/src/main/kotlin/Model/Content.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/src/main/kotlin/Model/Content.kt b/core/src/main/kotlin/Model/Content.kt index 4f142ca4..7c776bdb 100644 --- a/core/src/main/kotlin/Model/Content.kt +++ b/core/src/main/kotlin/Model/Content.kt @@ -149,6 +149,7 @@ class ContentExternalLink(val href : String) : ContentBlock() { } data class ContentBookmark(val name: String): ContentBlock() +data class ContentLocalLink(val href: String) : ContentBlock() class ContentUnorderedList() : ContentBlock() class ContentOrderedList() : ContentBlock() |