diff options
| author | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-10-13 13:38:40 +0400 |
|---|---|---|
| committer | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-10-13 13:38:40 +0400 |
| commit | 9f0ff55b5f126c31b6d8f3cd28907e5b87601e28 (patch) | |
| tree | 1d21012d9a337df969a2d8f4ca22d521e26f0207 /src/Model | |
| parent | b3f588ce1d9e6d72b17c1e359008ed90286b1236 (diff) | |
| download | dokka-9f0ff55b5f126c31b6d8f3cd28907e5b87601e28.tar.gz dokka-9f0ff55b5f126c31b6d8f3cd28907e5b87601e28.tar.bz2 dokka-9f0ff55b5f126c31b6d8f3cd28907e5b87601e28.zip | |
Parse and format inline code, fix strong & emph formatting.
Diffstat (limited to 'src/Model')
| -rw-r--r-- | src/Model/Content.kt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Model/Content.kt b/src/Model/Content.kt index ce438835..a3691fd0 100644 --- a/src/Model/Content.kt +++ b/src/Model/Content.kt @@ -23,10 +23,12 @@ public class ContentText(val text: String) : ContentNode() public class ContentKeyword(val text: String) : ContentNode() public class ContentIdentifier(val text: String) : ContentNode() public class ContentSymbol(val text: String) : ContentNode() + public class ContentEmphasis() : ContentBlock() +public class ContentStrong() : ContentBlock() +public class ContentCode() : ContentBlock() public class ContentNodeLink(val node : DocumentationNode) : ContentBlock() public class ContentExternalLink(val href : String) : ContentBlock() -public class ContentStrong() : ContentBlock() public class ContentList() : ContentBlock() public class ContentSection(public val label: String) : ContentBlock() |
