ass-core 0.1.2

High-performance ASS subtitle format parser and analyzer
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Missing style reference detection rule for ASS script linting.
//!
//! Detects events that reference undefined styles, which would cause
//! rendering errors or fallback to default styling behavior.

mod rule;

#[cfg(test)]
mod tests;

pub use rule::MissingStyleRule;