Home
last modified time | relevance | path

Searched refs:appendNodeWithChildren (Results 1 – 1 of 1) sorted by relevance

/external/dokka/core/src/main/kotlin/Kotlin/
DContentBuilder.kt32 fun appendNodeWithChildren(content: ContentBlock) { in buildContentTo() method
39 MarkdownElementTypes.ATX_1 -> appendNodeWithChildren(ContentHeading(1)) in buildContentTo()
40 MarkdownElementTypes.ATX_2 -> appendNodeWithChildren(ContentHeading(2)) in buildContentTo()
41 MarkdownElementTypes.ATX_3 -> appendNodeWithChildren(ContentHeading(3)) in buildContentTo()
42 MarkdownElementTypes.ATX_4 -> appendNodeWithChildren(ContentHeading(4)) in buildContentTo()
43 MarkdownElementTypes.ATX_5 -> appendNodeWithChildren(ContentHeading(5)) in buildContentTo()
44 MarkdownElementTypes.ATX_6 -> appendNodeWithChildren(ContentHeading(6)) in buildContentTo()
45 MarkdownElementTypes.UNORDERED_LIST -> appendNodeWithChildren(ContentUnorderedList()) in buildContentTo()
46 MarkdownElementTypes.ORDERED_LIST -> appendNodeWithChildren(ContentOrderedList()) in buildContentTo()
47 MarkdownElementTypes.LIST_ITEM -> appendNodeWithChildren(ContentListItem()) in buildContentTo()
[all …]