pdf_composer_base 0.3.0

PDF Composer base functionality crate
Documentation
/// The `extract_to_end_string` module contains a function to extract everything from a selected delimiter to the end of the string.
mod extract_to_end_string;
/// Re-exports the `extract_to_end_string` function for public use.
pub use extract_to_end_string::extract_to_end_string;

/// The `yaml_mapping_to_btreemap` module contains a function to convert YAML mapping to a BTreeMap.
mod yaml_mapping_to_btreemap;
/// Re-exports the `yaml_mapping_to_btreemap` function for public use.
pub use yaml_mapping_to_btreemap::yaml_mapping_to_btreemap;

/// The `read_lines` module contains a function to read lines from a file.
mod read_lines;
/// Re-exports the `read_lines` function for public use.
pub use read_lines::read_lines;

/// The `merge_markdown_yaml` module contains a function to merge YAML content into Markdown content.
mod merge_markdown_yaml;
/// Re-exports the `merge_markdown_yaml` function for public use.
pub use merge_markdown_yaml::merge_markdown_yaml;