package jupyter-kernel

  1. Overview
  2. Docs
Library to write jupyter kernels (interactive notebooks)

Install

dune-project
 Dependency

Authors

Maintainers

Sources

0.6.tar.gz
md5=a6ce3af2d012278e1d63ecdb48b45ecd
sha512=14f402023ee49c30346c6c14e0f21eda3b1889fb9b3c5e5a1b412c4278b13561abfbd8b79707d384bf4a8dde70ec3f3bf16663f9a4d56518866f130f6b971f73

doc/jupyter-kernel.doc/Jupyter_kernel_document/Document/index.html

Module Jupyter_kernel_document.Document

Simple Formatted Document

type block = [
  1. | `S of string
  2. | `P of string
  3. | `Pre of string
  4. | `I of string * t
  5. | `L of t list
  6. | `Tbl of string list * t list list
]
and t = block list
val section : string -> block
val paragraph : string -> block
val paragraph_f : ('a, Format.formatter, unit, block) format4 -> 'a
val pre : string -> block
val pre_f : ('a, Format.formatter, unit, block) format4 -> 'a
val list : t list -> block
val indent : string -> t -> block
val pp : Format.formatter -> t -> unit

Regular pretty printer