diff options
author | TheOnlyTails <theonlytails@theonlytails.com> | 2022-05-13 16:16:03 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-13 16:16:03 +0300 |
commit | c532003c71cc551ce0df797a8d6207c0edb8eaab (patch) | |
tree | e39c948c0d0e305dbb0a61be7744e517fd924367 /core/src/main/kotlin/pages/ContentNodes.kt | |
parent | 3e55be9954acc7e4cab11ed661cb62ed347e9b84 (diff) | |
download | dokka-c532003c71cc551ce0df797a8d6207c0edb8eaab.tar.gz dokka-c532003c71cc551ce0df797a8d6207c0edb8eaab.tar.bz2 dokka-c532003c71cc551ce0df797a8d6207c0edb8eaab.zip |
Render quotes as blockquotes instead of code blocks. (#2496)
Diffstat (limited to 'core/src/main/kotlin/pages/ContentNodes.kt')
-rw-r--r-- | core/src/main/kotlin/pages/ContentNodes.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/kotlin/pages/ContentNodes.kt b/core/src/main/kotlin/pages/ContentNodes.kt index 4210b4dd..0e89b3f6 100644 --- a/core/src/main/kotlin/pages/ContentNodes.kt +++ b/core/src/main/kotlin/pages/ContentNodes.kt @@ -384,7 +384,7 @@ enum class TokenStyle : Style { enum class TextStyle : Style { Bold, Italic, Strong, Strikethrough, Paragraph, - Block, Span, Monospace, Indented, Cover, UnderCoverText, BreakableAfter, Breakable, InlineComment + Block, Span, Monospace, Indented, Cover, UnderCoverText, BreakableAfter, Breakable, InlineComment, Quotation } enum class ContentStyle : Style { |