ass-editor 0.1.2

High-performance, ergonomic editor layer for ASS subtitles
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Extended tests for the syntax highlighting extension.
//!
//! This file is the test module for the syntax highlighting extension; it is
//! split into focused submodules under `syntax_highlight_tests/`.

#[cfg(not(feature = "std"))]
extern crate alloc;

#[path = "syntax_highlight_tests/formatting.rs"]
mod formatting;
#[path = "syntax_highlight_tests/lifecycle.rs"]
mod lifecycle;
#[path = "syntax_highlight_tests/override_tags.rs"]
mod override_tags;
#[path = "syntax_highlight_tests/tokenization.rs"]
mod tokenization;