rusty-todo-md 1.9.2

A multi-language TODO comment extractor for source code files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Extracts TODO/FIXME/HACK comments from source code files.
//!
//! This module provides the main API for extracting marked comments from source files.
//! It automatically determines the appropriate parser based on file extension and
//! supports multiple programming languages.

// Private implementation modules
mod todo_extractor_internal;

// Re-export the public API
pub use todo_extractor_internal::aggregator::{
    extract_marked_items_from_file, CommentLine, MarkedItem, MarkerConfig,
};