diff options
| author | lukeflo | 2025-10-06 11:52:32 +0200 |
|---|---|---|
| committer | lukeflo | 2025-10-06 11:52:32 +0200 |
| commit | ecc4e102a5e8203407ca30f4d7c0abb871fa7111 (patch) | |
| tree | 5d859c8f9859e66507c717727805d86b4543294e /src/bibiman.rs | |
| parent | db0deb9b6ee59c07ab2f04972184b154925034bd (diff) | |
| parent | f84ebacd1ea47b09c58dd1ef1eaaf70feaacbe0f (diff) | |
| download | bibiman-ecc4e102a5e8203407ca30f4d7c0abb871fa7111.tar.gz bibiman-ecc4e102a5e8203407ca30f4d7c0abb871fa7111.zip | |
Merge pull request 'Parse LaTeX macros in entry fields' (#57) from Klimperfix/bibiman:impl-latex-macro-sanitizing into main
Reviewed-on: https://codeberg.org/lukeflo/bibiman/pulls/57
Reviewed-by: lukeflo <lukeflo@noreply.codeberg.org>
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 { |
