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
//! Encoding issue detection rule for ASS script linting.
//!
//! Detects potential encoding or character issues in subtitle scripts
//! that could cause display problems or compatibility issues.

mod rule;

#[cfg(test)]
mod tests;

pub use rule::EncodingRule;