aboutsummaryrefslogtreecommitdiff
path: root/src/Model/Content.kt
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2015-03-03 19:35:56 +0100
committerDmitry Jemerov <yole@jetbrains.com>2015-03-03 19:35:56 +0100
commit6659337410225b813ea902bfa4b2e5ba3c2c1aaa (patch)
tree3c3679f01bca4497f800a371e42681246843d5d3 /src/Model/Content.kt
parente961960934e2f43cdfc6ad63126c005866a60003 (diff)
downloaddokka-6659337410225b813ea902bfa4b2e5ba3c2c1aaa.tar.gz
dokka-6659337410225b813ea902bfa4b2e5ba3c2c1aaa.tar.bz2
dokka-6659337410225b813ea902bfa4b2e5ba3c2c1aaa.zip
support ordered lists
Diffstat (limited to 'src/Model/Content.kt')
-rw-r--r--src/Model/Content.kt3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Model/Content.kt b/src/Model/Content.kt
index 91a7da81..d9c3d139 100644
--- a/src/Model/Content.kt
+++ b/src/Model/Content.kt
@@ -76,7 +76,8 @@ public class ContentExternalLink(val href : String) : ContentBlock() {
children.hashCode() * 31 + href.hashCode()
}
-public class ContentList() : ContentBlock()
+public class ContentUnorderedList() : ContentBlock()
+public class ContentOrderedList() : ContentBlock()
public class ContentListItem() : ContentBlock()
public class ContentSection(public val tag: String, public val subjectName: String?) : ContentBlock() {