File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/documentation Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,8 @@ internal annotation class ExcludeFromSources
82
82
* @param stripReferences Whether to strip `[references]` from the HTML file. Default is `true`.
83
83
* This is useful when you want to include the HTML file in a website, where the references are not
84
84
* 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`.
85
87
*/
86
88
@Target(
87
89
CLASS ,
@@ -98,4 +100,8 @@ internal annotation class ExcludeFromSources
98
100
TYPEALIAS ,
99
101
FILE ,
100
102
)
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
+ )
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ kotestAsserions = "6.0.0.M1"
45
45
46
46
jsoup = " 1.18.3"
47
47
arrow = " 18.1.0"
48
- kodex = " 0.4.2 "
48
+ kodex = " 0.4.3 "
49
49
simpleGit = " 2.2.1"
50
50
dependencyVersions = " 0.51.0"
51
51
plugin-publish = " 1.3.0"
You can’t perform that action at this time.
0 commit comments