diff options
author | KrystianUjma <kujma@virtuslab.com> | 2019-04-02 10:57:52 +0200 |
---|---|---|
committer | KrystianUjma <kujma@virtuslab.com> | 2019-04-02 10:57:52 +0200 |
commit | 65af8691289b8663fc0d7450fc5f8351e50cede7 (patch) | |
tree | 094aeee22a1d9432fc82ef628486f4da8670c07a /core/src/main/kotlin/Formats | |
parent | bf6bc4203ffa7472454bc5fbcd7d9c6b48b31890 (diff) | |
download | dokka-65af8691289b8663fc0d7450fc5f8351e50cede7.tar.gz dokka-65af8691289b8663fc0d7450fc5f8351e50cede7.tar.bz2 dokka-65af8691289b8663fc0d7450fc5f8351e50cede7.zip |
fix MarkdownFormatTest.extensions#1 test, add table cell
Diffstat (limited to 'core/src/main/kotlin/Formats')
-rw-r--r-- | core/src/main/kotlin/Formats/StructuredFormatService.kt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/core/src/main/kotlin/Formats/StructuredFormatService.kt b/core/src/main/kotlin/Formats/StructuredFormatService.kt index 44efcdbe..70cefbdb 100644 --- a/core/src/main/kotlin/Formats/StructuredFormatService.kt +++ b/core/src/main/kotlin/Formats/StructuredFormatService.kt @@ -691,8 +691,6 @@ abstract class StructuredOutputBuilder(val to: StringBuilder, return membersOrGroupMembers { it.kind == kind } } - - //todo debug appendSection("Packages", node.members(NodeKind.Package), platformsBasedOnMembers = true) appendSection("Types", node.membersOrGroupMembers { it.kind in NodeKind.classLike /*&& it.kind != NodeKind.TypeAlias*/ && it.kind != NodeKind.AnnotationClass && it.kind != NodeKind.Exception }) appendSection("Annotations", node.membersOrGroupMembers(NodeKind.AnnotationClass)) @@ -776,14 +774,17 @@ abstract class StructuredOutputBuilder(val to: StringBuilder, if (summarized.platformPlacement == Summarized.PlatformPlacement.Row) { appendPlatforms(platforms) } - appendHeader(level = 4) { +// appendHeader(level = 4) { appendLink(memberLocation) // if (members.singleOrNull()?.kind != NodeKind.ExternalClass) { // appendPlatforms(platforms) // } - } +// } appendSummarySignatures(summarized) } + appendTableCell { + + } } } } |