Skip to content

Commit c76806d

Browse files
committed
bumping KoDEx to 0.4.3 to fix @ExportAsHtml rendering on Writerside
1 parent 93ce411 commit c76806d

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/documentation/utils.kt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ internal annotation class ExcludeFromSources
8282
* @param stripReferences Whether to strip `[references]` from the HTML file. Default is `true`.
8383
* This is useful when you want to include the HTML file in a website, where the references are not
8484
* needed or would break.
85+
* @param includeResizeScript Whether to include a script that helps height recalculation inside iFrames.
86+
* This is useful inside WriterSide. Default is `true`.
8587
*/
8688
@Target(
8789
CLASS,
@@ -98,4 +100,8 @@ internal annotation class ExcludeFromSources
98100
TYPEALIAS,
99101
FILE,
100102
)
101-
internal annotation class ExportAsHtml(val theme: Boolean = true, val stripReferences: Boolean = true)
103+
internal annotation class ExportAsHtml(
104+
val theme: Boolean = true,
105+
val stripReferences: Boolean = true,
106+
val includeResizeScript: Boolean = true,
107+
)

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ kotestAsserions = "6.0.0.M1"
4545

4646
jsoup = "1.18.3"
4747
arrow = "18.1.0"
48-
kodex = "0.4.2"
48+
kodex = "0.4.3"
4949
simpleGit = "2.2.1"
5050
dependencyVersions = "0.51.0"
5151
plugin-publish = "1.3.0"

0 commit comments

Comments
 (0)