diff options
Diffstat (limited to 'plugins/gfm/src')
-rw-r--r-- | plugins/gfm/src/main/kotlin/GfmPlugin.kt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/gfm/src/main/kotlin/GfmPlugin.kt b/plugins/gfm/src/main/kotlin/GfmPlugin.kt index d93b4e98..8ae4a78a 100644 --- a/plugins/gfm/src/main/kotlin/GfmPlugin.kt +++ b/plugins/gfm/src/main/kotlin/GfmPlugin.kt @@ -246,11 +246,11 @@ open class CommonmarkRenderer( val distinct = node.groupDivergentInstances(pageContext, { instance, contentPage, sourceSet -> instance.before?.let { before -> - buildString { buildContentNode(before, pageContext, setOf(sourceSet)) } + buildString { buildContentNode(before, pageContext, sourceSet) } } ?: "" }, { instance, contentPage, sourceSet -> instance.after?.let { after -> - buildString { buildContentNode(after, pageContext, setOf(sourceSet)) } + buildString { buildContentNode(after, pageContext, sourceSet) } } ?: "" }) @@ -265,7 +265,7 @@ open class CommonmarkRenderer( buildContentNode( it, pageContext, - setOf(sourceSets.first()) + sourceSets.first() ) // It's workaround to render content only once buildNewLine() } @@ -293,7 +293,7 @@ open class CommonmarkRenderer( buildContentNode( it, pageContext, - setOf(sourceSets.first()) + sourceSets.first() ) // It's workaround to render content only once buildNewLine() } |