diff options
Diffstat (limited to 'src/Formats/FormatService.kt')
-rw-r--r-- | src/Formats/FormatService.kt | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/Formats/FormatService.kt b/src/Formats/FormatService.kt index bb6da985..cc190346 100644 --- a/src/Formats/FormatService.kt +++ b/src/Formats/FormatService.kt @@ -14,13 +14,7 @@ public trait FormatService { /** Appends formatted content to [StringBuilder](to) using specified [location] */ fun appendNodes(location: Location, to: StringBuilder, nodes: Iterable<DocumentationNode>) - - /** Appends formatted outline to [StringBuilder](to) using specified [location] */ - fun appendOutline(location: Location, to: StringBuilder, nodes: Iterable<DocumentationNode>) } /** Format content to [String] using specified [location] */ fun FormatService.format(location: Location, nodes: Iterable<DocumentationNode>): String = StringBuilder { appendNodes(location, this, nodes) }.toString() - -/** Format outline to [String] using specified [location] */ -fun FormatService.formatOutline(location: Location, nodes: Iterable<DocumentationNode>): String = StringBuilder { appendOutline(location, this, nodes) }.toString()
\ No newline at end of file |