org.jetbrains.dokka.base.renderers.html.HtmlContent.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dokka-base Show documentation
Show all versions of dokka-base Show documentation
Dokka is an API documentation engine for Kotlin
/*
* Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package org.jetbrains.dokka.base.renderers.html
import org.jetbrains.dokka.pages.ContentBreakLine
import org.jetbrains.dokka.pages.Style
/**
* Html-specific style that represents
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
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy