From 7350c7382bda85618c3dae1d74cc8cbe7ddd4b9d Mon Sep 17 00:00:00 2001 From: Klimperfix Date: Tue, 30 Sep 2025 21:49:31 +0200 Subject: Implemented basic sanitizing. The default Regex crate does not support the required regex features, so I'm using the fancy_regex crate that does. --- src/bibiman.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/bibiman.rs') 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 { -- cgit v1.2.3