Skip to content

Commit

Permalink
detekt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Garzas committed May 21, 2024
1 parent 271242a commit 8daf11c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ fun <T : Node> T.toContent(isParentDocument: Boolean = false): MarkdownNode {
is Strikethrough -> MarkdownNode.Inline.Strikethrough(convertChildren<MarkdownNode.Inline>())
is HardLineBreak, is SoftLineBreak -> MarkdownNode.Inline.Break(convertChildren<MarkdownNode.Inline>())
is LinkReferenceDefinition -> MarkdownNode.Block.Paragraph(
listOf(MarkdownNode.Inline.Text("[${label}]: ${this.destination} ${this.title}")),
listOf(MarkdownNode.Inline.Text("[$label]: $destination $title")),
isParentDocument
)

Expand Down

0 comments on commit 8daf11c

Please sign in to comment.