Home
last modified time | relevance | path

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

/external/dokka/core/src/main/kotlin/javadoc/
Dtags.kt156 …fun surroundWith(module: ModuleNodeAdapter, holder: Doc, prefix: String, postfix: String, node: Co… in buildInlineTags() method
172 …fun surroundWith(module: ModuleNodeAdapter, holder: Doc, prefix: String, postfix: String, node: Co… in buildInlineTags() method
200 …is ContentSpecialReference -> surroundWith(module, holder, "<aside class=\"note\">", "</aside>", n… in buildInlineTags()
201 is ContentCode -> surroundWith(module, holder, "<code>", "</code>", node, result) in buildInlineTags()
202 … is ContentBlockCode -> surroundWith(module, holder, "<code><pre>", "</pre></code>", node, result) in buildInlineTags()
204 is ContentEmphasis -> surroundWith(module, holder, "<em>", "</em>", node, result) in buildInlineTags()
205 …is ContentHeading -> surroundWith(module, holder, "<h${node.level}>", "</h${node.level}>", node, r… in buildInlineTags()
209 is ContentListItem -> surroundWith(module, holder, "<li>", "</li>", node, result) in buildInlineTags()
210 is ContentOrderedList -> surroundWith(module, holder, "<ol>", "</ol>", node, result) in buildInlineTags()
211 is ContentUnorderedList -> surroundWith(module, holder, "<ul>", "</ul>", node, result) in buildInlineTags()
[all …]