beet_parse 0.0.8

Parsers for various text and token formats
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Module for `script`, `style`, `code` and any other language snippets
//! that require special processing like deduplication or modification.
mod extract_inner_text;
mod extract_lang_nodes;
#[cfg(feature = "css")]
mod parse_lightning;
pub use extract_inner_text::*;
pub use extract_lang_nodes::*;
#[cfg(feature = "syntect")]
pub use parse_syntect::*;
#[cfg(feature = "syntect")]
mod parse_syntect;
#[cfg(feature = "css")]
pub use parse_lightning::*;