diff options
author | Andrey Tyrin <tyrin.andrew@gmail.com> | 2022-08-10 17:43:33 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-10 16:43:33 +0200 |
commit | 732f8aac1eb6b2c137fdf81d9d670a30d0f8b9ea (patch) | |
tree | 5cfe56adbc45ac4672304efb924e248c34a7e154 /core/src/main/kotlin/pages | |
parent | d3ff6297c4034bbf45f4a60e287e12cfa1f0ad1a (diff) | |
download | dokka-732f8aac1eb6b2c137fdf81d9d670a30d0f8b9ea.tar.gz dokka-732f8aac1eb6b2c137fdf81d9d670a30d0f8b9ea.tar.bz2 dokka-732f8aac1eb6b2c137fdf81d9d670a30d0f8b9ea.zip |
Support Var html tag for Javadoc (#2617)
Fixes #2358
Diffstat (limited to 'core/src/main/kotlin/pages')
-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 a0f2fd74..0d8475a9 100644 --- a/core/src/main/kotlin/pages/ContentNodes.kt +++ b/core/src/main/kotlin/pages/ContentNodes.kt @@ -383,7 +383,7 @@ enum class TokenStyle : Style { enum class TextStyle : Style { Bold, Italic, Strong, Strikethrough, Paragraph, Block, Span, Monospace, Indented, Cover, UnderCoverText, BreakableAfter, Breakable, InlineComment, Quotation, - FloatingRight + FloatingRight, Var } enum class ContentStyle : Style { |