diff options
Diffstat (limited to 'plugins/base/src/main/kotlin/renderers/html/HtmlContent.kt')
-rw-r--r-- | plugins/base/src/main/kotlin/renderers/html/HtmlContent.kt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/base/src/main/kotlin/renderers/html/HtmlContent.kt b/plugins/base/src/main/kotlin/renderers/html/HtmlContent.kt new file mode 100644 index 00000000..a55323f9 --- /dev/null +++ b/plugins/base/src/main/kotlin/renderers/html/HtmlContent.kt @@ -0,0 +1,14 @@ +package org.jetbrains.dokka.base.renderers.html + +import org.jetbrains.dokka.pages.ContentBreakLine +import org.jetbrains.dokka.pages.Style + + +/** + * Html-specific style that represents <hr> tag if used in conjunction with [ContentBreakLine] + */ +internal object HorizontalBreakLineStyle : Style { + // this exists as a simple internal solution to avoid introducing unnecessary public API on content level. + // If you have the need to implement proper horizontal divider (i.e to support `---` markdown element), + // consider removing this and providing proper API for all formats and levels +} |