aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/main/kotlin/transformers/pages
diff options
context:
space:
mode:
authorTheOnlyTails <theonlytails@theonlytails.com>2022-05-13 16:16:03 +0300
committerGitHub <noreply@github.com>2022-05-13 16:16:03 +0300
commitc532003c71cc551ce0df797a8d6207c0edb8eaab (patch)
treee39c948c0d0e305dbb0a61be7744e517fd924367 /plugins/base/src/main/kotlin/transformers/pages
parent3e55be9954acc7e4cab11ed661cb62ed347e9b84 (diff)
downloaddokka-c532003c71cc551ce0df797a8d6207c0edb8eaab.tar.gz
dokka-c532003c71cc551ce0df797a8d6207c0edb8eaab.tar.bz2
dokka-c532003c71cc551ce0df797a8d6207c0edb8eaab.zip
Render quotes as blockquotes instead of code blocks. (#2496)
Diffstat (limited to 'plugins/base/src/main/kotlin/transformers/pages')
-rw-r--r--plugins/base/src/main/kotlin/transformers/pages/comments/DocTagToContentConverter.kt10
1 files changed, 9 insertions, 1 deletions
diff --git a/plugins/base/src/main/kotlin/transformers/pages/comments/DocTagToContentConverter.kt b/plugins/base/src/main/kotlin/transformers/pages/comments/DocTagToContentConverter.kt
index 85b082ef..b46a7679 100644
--- a/plugins/base/src/main/kotlin/transformers/pages/comments/DocTagToContentConverter.kt
+++ b/plugins/base/src/main/kotlin/transformers/pages/comments/DocTagToContentConverter.kt
@@ -123,7 +123,15 @@ open class DocTagToContentConverter : CommentsToContentConverter {
styles
)
)
- is BlockQuote, is Pre, is CodeBlock -> listOf(
+ is BlockQuote -> listOf(
+ ContentGroup(
+ buildChildren(docTag),
+ dci,
+ sourceSets.toDisplaySourceSets(),
+ styles + TextStyle.Quotation,
+ )
+ )
+ is Pre, is CodeBlock -> listOf(
ContentCodeBlock(
buildChildren(docTag),
docTag.params.getOrDefault("lang", ""),