All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.kotlinx.jupyter.ext.HtmlRendering.kt Maven / Gradle / Ivy

There is a newer version: 0.12.0-333
Show newest version
package org.jetbrains.kotlinx.jupyter.ext

import org.jetbrains.kotlinx.jupyter.api.MimeTypedResult
import org.jetbrains.kotlinx.jupyter.api.htmlResult
import java.io.File

data class HTMLAttr(val name: String, val value: String)

@Suppress("FunctionName")
fun HTML(
    file: File,
    isolated: Boolean = false,
): MimeTypedResult {
    val text = file.readText()
    return htmlResult(text, isolated)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy