org.jetbrains.jupyter.parser.notebook.MarkdownCell.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jupyter-notebooks-parser Show documentation
Show all versions of jupyter-notebooks-parser Show documentation
Jupyter Notebooks parser and Kotlin utilities for them
The newest version!
package org.jetbrains.jupyter.parser.notebook
import kotlinx.serialization.json.JsonObject
public class MarkdownCell(
override val id: String?,
override val metadata: MarkdownCellMetadata,
override val source: String,
override val attachments: JsonObject? = null,
) : CellWithAttachments() {
override val type: Type get() = Type.MARKDOWN
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy