aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/main/kotlin/renderers
diff options
context:
space:
mode:
authorBłażej Kardyś <bkardys@virtuslab.com>2020-04-23 23:26:36 +0200
committerPaweł Marks <Kordyjan@users.noreply.github.com>2020-04-30 12:31:05 +0200
commit423e7ee17c2cb28d4a34b91231560eff0656ffc0 (patch)
tree7e02e74d40ce0807011d7663c30ae2489ae08e2d /plugins/base/src/main/kotlin/renderers
parent3cd12e14d7465c197d4a6fc76d073328a46db349 (diff)
downloaddokka-423e7ee17c2cb28d4a34b91231560eff0656ffc0.tar.gz
dokka-423e7ee17c2cb28d4a34b91231560eff0656ffc0.tar.bz2
dokka-423e7ee17c2cb28d4a34b91231560eff0656ffc0.zip
Fixing GFM components display
Diffstat (limited to 'plugins/base/src/main/kotlin/renderers')
-rw-r--r--plugins/base/src/main/kotlin/renderers/html/HtmlRenderer.kt23
1 files changed, 13 insertions, 10 deletions
diff --git a/plugins/base/src/main/kotlin/renderers/html/HtmlRenderer.kt b/plugins/base/src/main/kotlin/renderers/html/HtmlRenderer.kt
index 23ba0676..65441909 100644
--- a/plugins/base/src/main/kotlin/renderers/html/HtmlRenderer.kt
+++ b/plugins/base/src/main/kotlin/renderers/html/HtmlRenderer.kt
@@ -21,7 +21,7 @@ open class HtmlRenderer(
private val pageList = mutableListOf<String>()
override val preprocessors = context.plugin<DokkaBase>().query { htmlPreprocessors } +
- context.plugin<DokkaBase>().querySingle { samplesTransformer }
+ context.plugin<DokkaBase>().querySingle { samplesTransformer }
override fun FlowContent.wrapGroup(
node: ContentGroup,
@@ -37,8 +37,8 @@ open class HtmlRenderer(
node.dci.kind == ContentKind.Symbol -> div("symbol $additionalClasses") { childrenCallback() }
node.dci.kind == ContentKind.BriefComment -> div("brief $additionalClasses") { childrenCallback() }
node.dci.kind == ContentKind.Cover -> div("cover $additionalClasses") { childrenCallback() }
- node.style.contains(TextStyle.Paragraph) -> p(additionalClasses) { childrenCallback() }
- node.style.contains(TextStyle.Block) -> div(additionalClasses) { childrenCallback() }
+ node.hasStyle(TextStyle.Paragraph) -> p(additionalClasses) { childrenCallback() }
+ node.hasStyle(TextStyle.Block) -> div(additionalClasses) { childrenCallback() }
else -> childrenCallback()
}
}
@@ -63,7 +63,7 @@ open class HtmlRenderer(
override fun FlowContent.buildPlatformDependent(content: PlatformHintedContent, pageContext: ContentPage) {
div("platform-hinted") {
attributes["data-platform-hinted"] = "data-platform-hinted"
- val contents = content.platforms.mapIndexed { index,platform ->
+ val contents = content.platforms.mapIndexed { index, platform ->
platform to createHTML(prettyPrint = false).div(classes = "content") {
if (index == 0) attributes["data-active"] = ""
attributes["data-togglable"] = platform.targets.joinToString("-")
@@ -71,10 +71,10 @@ open class HtmlRenderer(
}
}
- if(contents.size != 1) {
+ if (contents.size != 1) {
div("platform-bookmarks-row") {
attributes["data-toggle-list"] = "data-toggle-list"
- contents.forEachIndexed { index,pair ->
+ contents.forEachIndexed { index, pair ->
button(classes = "platform-bookmark") {
if (index == 0) attributes["data-active"] = ""
attributes["data-toggle"] = pair.first.targets.joinToString("-")
@@ -181,7 +181,7 @@ open class HtmlRenderer(
pageContext: ContentPage,
platformRestriction: PlatformData?
) {
- table {
+ table(if (node.hasStyle(CommentTable)) "comment-table" else "") {
thead {
node.header.forEach {
tr {
@@ -256,8 +256,11 @@ open class HtmlRenderer(
val iterator = code.iterator()
while (iterator.hasNext()) {
val element = iterator.next()
- +((element as? ContentText)?.text
- ?: run { context.logger.error("Cannot cast $element as ContentText!"); "" })
+ +(when (element) {
+ is ContentText -> element.text
+ is ContentBreakLine -> "\n"
+ else -> run { context.logger.error("Cannot cast $element as ContentText!"); "" }
+ })
if (iterator.hasNext()) {
buildNewLine()
}
@@ -278,7 +281,7 @@ open class HtmlRenderer(
override fun FlowContent.buildText(textNode: ContentText) {
when {
- textNode.style.contains(TextStyle.Indented) -> consumer.onTagContentEntity(Entities.nbsp)
+ textNode.hasStyle(TextStyle.Indented) -> consumer.onTagContentEntity(Entities.nbsp)
}
text(textNode.text)
}