diff options
| author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2018-05-07 16:37:12 +0300 |
|---|---|---|
| committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2018-07-14 23:57:12 +0300 |
| commit | 44ad68386658dde985207ea0aedb19c96d9b3f93 (patch) | |
| tree | ae0abbef28a0a305ec2c05dae93274f0c9021e26 /core/src/main/kotlin/Model | |
| parent | e38d83905ff706b2d656f12896a6905f5a0729d7 (diff) | |
| download | dokka-44ad68386658dde985207ea0aedb19c96d9b3f93.tar.gz dokka-44ad68386658dde985207ea0aedb19c96d9b3f93.tar.bz2 dokka-44ad68386658dde985207ea0aedb19c96d9b3f93.zip | |
[backport] KT-24277: Persist inpage anchors (aka bookmarks) from Javadoc
Original: 4fddba5
Diffstat (limited to 'core/src/main/kotlin/Model')
| -rw-r--r-- | core/src/main/kotlin/Model/Content.kt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/main/kotlin/Model/Content.kt b/core/src/main/kotlin/Model/Content.kt index 010ee7ca..4f142ca4 100644 --- a/core/src/main/kotlin/Model/Content.kt +++ b/core/src/main/kotlin/Model/Content.kt @@ -148,6 +148,8 @@ class ContentExternalLink(val href : String) : ContentBlock() { children.hashCode() * 31 + href.hashCode() } +data class ContentBookmark(val name: String): ContentBlock() + class ContentUnorderedList() : ContentBlock() class ContentOrderedList() : ContentBlock() class ContentListItem() : ContentBlock() |
