GORBIE 0.11.1

GORBIE! Is a minimalist notebook library for Rust.
Documentation
//! Re-exports commonly used types, constants, and helpers for convenient glob imports.
pub use crate::widgets;

// Re-export macros and helpers
pub use crate::card_ctx::span_width;
pub use crate::card_ctx::Grid;
pub use crate::card_ctx::GRID_COL_WIDTH;
pub use crate::card_ctx::GRID_COLUMNS;
pub use crate::card_ctx::GRID_EDGE_PAD;
pub use crate::card_ctx::GRID_GUTTER;
pub use crate::card_ctx::FloatResponse;
pub use crate::card_ctx::GRID_ROW_MODULE;
pub use crate::dataflow::ComputedState;
#[cfg(feature = "markdown")]
pub use crate::md;
#[cfg(feature = "markdown")]
pub use crate::note;
pub use crate::notebook;
pub use crate::state::StateAccess;
pub use crate::state::StateId;
pub use crate::CardCtx;
pub use crate::NotebookConfig;
pub use crate::NotebookCtx;
#[cfg(feature = "typst")]
pub use crate::typst;
#[cfg(feature = "typst")]
pub use crate::widgets::typst_widget::{
    ral_preamble, typst, typst_math_display, typst_math_inline, typst_math_fn,
    typst_with_preamble,
};