org.jetbrains.jupyter.parser.notebook.MarkdownCellMetadata.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.Serializable
import kotlinx.serialization.json.JsonObject
/**
* Cell-level metadata.
*/
@Serializable
public class MarkdownCellMetadata(
override val name: String? = null,
override val tags: Set? = null,
override val jupyter: JsonObject? = null,
) : CellMetadata()
© 2015 - 2025 Weber Informatics LLC | Privacy Policy