Skip to main content

ass_core/parser/sections/script_info/
mod.rs

1//! Script Info section parser for ASS scripts.
2//!
3//! Handles parsing of the [Script Info] section which contains metadata
4//! and configuration parameters for the subtitle script.
5
6mod parser;
7
8#[cfg(test)]
9mod tests;
10
11pub use parser::ScriptInfoParser;