aboutsummaryrefslogtreecommitdiff
path: root/src/Formats/MarkdownFormatService.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/Formats/MarkdownFormatService.kt')
-rw-r--r--src/Formats/MarkdownFormatService.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Formats/MarkdownFormatService.kt b/src/Formats/MarkdownFormatService.kt
index ae1500f2..0fcfa444 100644
--- a/src/Formats/MarkdownFormatService.kt
+++ b/src/Formats/MarkdownFormatService.kt
@@ -3,8 +3,8 @@ package org.jetbrains.dokka
import org.jetbrains.dokka.DocumentationNode.Kind
import java.util.LinkedHashMap
-public class MarkdownFormatService(val locationService: LocationService,
- val signatureGenerator: SignatureGenerator) : FormatService {
+public open class MarkdownFormatService(val locationService: LocationService,
+ val signatureGenerator: SignatureGenerator) : FormatService {
override val extension: String = "md"
override fun format(nodes: Iterable<DocumentationNode>, to: StringBuilder) {
with (to) {