ass_editor/formats/webvtt/mod.rs
1//! WebVTT format support with style preservation.
2//!
3//! This module provides import/export functionality for WebVTT files,
4//! with comprehensive style preservation and positioning support.
5
6mod cue;
7mod exporter;
8mod format;
9mod importer;
10mod styling;
11mod time;
12
13#[cfg(test)]
14mod conversion_tests;
15#[cfg(test)]
16mod roundtrip_tests;
17
18pub use format::WebVttFormat;