/* * Copyright 2014-2023 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 }