Customize unified diff formatting

This commit is contained in:
Armin Ronacher 2021-01-30 20:45:31 +01:00
parent 96bbaf1fdf
commit 94890c52a5
4 changed files with 232 additions and 110 deletions

View file

@ -18,6 +18,7 @@
//! trait bounds necessary, as well as a generic interface.
//! * [`text`]: This extends the general diffing functionality to text (and more
//! specifically line) based diff operations.
//! * [`udiff`]: Unified diff functionality.
//!
//! ## Features
//!
@ -32,3 +33,4 @@
//! If the crate is used without default features it's removed.
pub mod algorithms;
pub mod text;
pub mod udiff;