Skip to main content

stillo_core/
lib.rs

1pub mod ast;
2pub mod document;
3pub mod extractor;
4pub mod html_to_ast;
5pub mod markdown;
6
7pub use ast::{Document, Block, Inline};
8pub use document::*;
9pub use extractor::{ContentExtractor, ExtractorConfig, ExtractionError};
10pub use html_to_ast::parse_html_to_ast;
11pub use markdown::{MarkdownSerializer, MarkdownConfig, HeadingStyle};