// SPDX-License-Identifier: Apache-2.0
// Copyright 2026 Shawn Hartsock and contributors
//! Scrybe core — foundational types for the Scrybe Markdown editor.
//!
//! Provides the building blocks all other scrybe crates depend on:
//!
//! - [`Document`] — the central editing unit: parsed AST + metadata
//! - [`ContentId`] — BLAKE3 content identifier (CIDv1, raw codec)
//! - [`ContentAddressable`] — trait for content-addressed storage
//! - [`Plugin`] — trait for Python and native plugins
//! - [`Workspace`] — collection of open documents + shared state
//! - [`Ast`] / [`Node`] — Markdown AST types
//! - [`DocumentChange`] / [`DocumentHistory`] / [`TextRange`] — change tracking
pub use ;
pub use ;
pub use ;
pub use Document;
pub use ScrybeError;
pub use Plugin;
pub use Workspace;