grepdown-lib 0.1.0

Core library for grepdown: SQLite-backed Markdown indexing, FTS5 search, and link-graph traversal
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod db;
mod error;
mod frontmatter;
mod lint;
mod project;
mod search;

pub use error::{Error, Result};
pub use lint::{Diagnostic, LintData, LintId, Severity, approve_edits, run_lints};
pub use project::MDDBProject;
pub use search::{DocumentContent, Link, ReachableNode, SearchResult, escape_fts5_query};