diff options
author | Filip Zybała <fzybala@virtuslab.com> | 2020-06-23 13:52:20 +0200 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-06-24 10:41:33 +0200 |
commit | 8a221a9084bf4fbc79b514c7f113fa2c4cb3dcfd (patch) | |
tree | dc9f6337973d0e8f0918431e831f176b5e680939 /plugins/gfm/src | |
parent | 4b886742cba287860b6e9c0d3f98781b60fe75da (diff) | |
download | dokka-8a221a9084bf4fbc79b514c7f113fa2c4cb3dcfd.tar.gz dokka-8a221a9084bf4fbc79b514c7f113fa2c4cb3dcfd.tar.bz2 dokka-8a221a9084bf4fbc79b514c7f113fa2c4cb3dcfd.zip |
Platform restriction handling for platform-hinted content
Diffstat (limited to 'plugins/gfm/src')
-rw-r--r-- | plugins/gfm/src/main/kotlin/GfmPlugin.kt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/gfm/src/main/kotlin/GfmPlugin.kt b/plugins/gfm/src/main/kotlin/GfmPlugin.kt index b10a45b8..fb83d3b0 100644 --- a/plugins/gfm/src/main/kotlin/GfmPlugin.kt +++ b/plugins/gfm/src/main/kotlin/GfmPlugin.kt @@ -111,7 +111,11 @@ open class CommonmarkRenderer( append("\n\n") } - override fun StringBuilder.buildPlatformDependent(content: PlatformHintedContent, pageContext: ContentPage) { + override fun StringBuilder.buildPlatformDependent( + content: PlatformHintedContent, + pageContext: ContentPage, + sourceSetRestriction: Set<SourceSetData>? + ) { val distinct = content.sourceSets.map { it to StringBuilder().apply {buildContentNode(content.inner, pageContext, setOf(it)) }.toString() }.groupBy(Pair<SourceSetData, String>::second, Pair<SourceSetData, String>::first) |