1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//! [`Scanner`] extensions for scanning e.g. [Rust], [C], [Python].
//!
//! See the [`any-lexer` crate] for lexer implementations using `text-scanner`,
//! e.g. [`RustLexer`] using [`RustScannerExt`].
//!
//! [`Scanner`]: crate::Scanner
//! [C]: CScannerExt
//! [Python]: PythonScannerExt
//! [Rust]: RustScannerExt
//!
//! [`any-lexer` crate]: https://docs.rs/any-lexer/*/any_lexer/
//! [`RustLexer`]: https://docs.rs/any-lexer/*/any_lexer/struct.RustLexer.html

mod c;
mod css;
mod java;
mod json;
mod jsonc;
mod python;
mod rust;
mod scss;

pub use self::c::*;
pub use self::css::*;
pub use self::java::*;
pub use self::json::*;
pub use self::jsonc::*;
pub use self::python::*;
pub use self::rust::*;
pub use self::scss::*;