okc 0.1.0

A local-first tool for AI agents to browse, parse, search, and reason over Open Knowledge Format (OKF) repositories
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Parsing pipeline for markdown documents with front-matter.
//!
//! This module provides the parsing components:
//!
//! - [`frontmatter`] - [`FrontMatterExtractor`]: Extracts YAML front-matter from markdown files
//! - [`links`] - [`LinkResolver`]: Resolves and validates wiki-style and external links
//! - [`link_utils`] - Standalone link utility functions (path normalization, wiki-link extraction)
//! - [`markdown`] - [`MarkdownParser`]: Parses markdown into headings, links, and sections
//! - [`yaml`] - [`YamlParser`]: Parses YAML front-matter into structured data

pub mod frontmatter;
pub mod link_utils;
pub mod links;
pub mod markdown;
pub mod yaml;