rusty-todo-md 1.2.1

A multi-language TODO comment extractor for source code files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::path::Path;

pub use crate::todo_extractor_internal::aggregator::{
    extract_marked_items, MarkedItem, MarkerConfig,
};

pub fn extract_todos_with_config(
    file_path: &Path,
    content: &str,
    config: &MarkerConfig,
) -> Vec<MarkedItem> {
    extract_marked_items(file_path, content, config)
}