diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2016-11-01 18:44:23 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2016-11-01 19:11:13 +0300 |
commit | ee824b90249fd1d6d868af998c6826df31ab557b (patch) | |
tree | 6fdbfd82218fe6eda0389d6b5b9dbfabd2207d78 /core/src/main/kotlin | |
parent | b10acb958c5f6eae54c7bea6cfa0d263bbcce55d (diff) | |
download | dokka-ee824b90249fd1d6d868af998c6826df31ab557b.tar.gz dokka-ee824b90249fd1d6d868af998c6826df31ab557b.tar.bz2 dokka-ee824b90249fd1d6d868af998c6826df31ab557b.zip |
Fix for GH #95 , KT-13300 : dokka eats apostrophes
Diffstat (limited to 'core/src/main/kotlin')
-rw-r--r-- | core/src/main/kotlin/Kotlin/ContentBuilder.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/src/main/kotlin/Kotlin/ContentBuilder.kt b/core/src/main/kotlin/Kotlin/ContentBuilder.kt index 7bee6936..61c67787 100644 --- a/core/src/main/kotlin/Kotlin/ContentBuilder.kt +++ b/core/src/main/kotlin/Kotlin/ContentBuilder.kt @@ -123,6 +123,7 @@ fun buildContentTo(tree: MarkdownNode, target: ContentBlock, linkResolver: (Stri } MarkdownTokenTypes.COLON, + MarkdownTokenTypes.SINGLE_QUOTE, MarkdownTokenTypes.DOUBLE_QUOTE, MarkdownTokenTypes.LT, MarkdownTokenTypes.GT, |