diff options
| author | Klimperfix | 2025-09-30 21:49:31 +0200 |
|---|---|---|
| committer | Klimperfix | 2025-10-03 12:20:14 +0200 |
| commit | 7350c7382bda85618c3dae1d74cc8cbe7ddd4b9d (patch) | |
| tree | 19128cc2ced032d9988adfa6d3a658f803b5c930 /src/bibiman.rs | |
| parent | db0deb9b6ee59c07ab2f04972184b154925034bd (diff) | |
| download | bibiman-7350c7382bda85618c3dae1d74cc8cbe7ddd4b9d.tar.gz bibiman-7350c7382bda85618c3dae1d74cc8cbe7ddd4b9d.zip | |
Implemented basic sanitizing.
The default Regex crate does not support the required regex features, so
I'm using the fancy_regex crate that does.
Diffstat (limited to 'src/bibiman.rs')
| -rw-r--r-- | src/bibiman.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bibiman.rs b/src/bibiman.rs index 6d21f8c..c423ce1 100644 --- a/src/bibiman.rs +++ b/src/bibiman.rs @@ -44,6 +44,9 @@ pub mod entries; pub mod keywords; pub mod search; +/// Module with function to sanitize text with LaTeX Macros into readable unicode text. +pub mod sanitize; + // Areas in which actions are possible #[derive(Debug)] pub enum CurrentArea { |
