colored-diff icon indicating copy to clipboard operation
colored-diff copied to clipboard

Results 3 colored-diff issues
Sort by recently updated
recently updated
newest added

The output looks like this: ![image](https://user-images.githubusercontent.com/9196531/181098158-1fd9faa2-6259-4df7-9dd2-3c8b7b747654.png) Instead of ![image](https://user-images.githubusercontent.com/9196531/181098221-bed24619-d3cb-4cf1-988a-8cce1b9de1b4.png) (Screenshot with v0.2.2) Which is _much_ less readable. Probably introduced in a690b657091.

It would be cool for this library to somehow support (behind a toggle feature) colored output using `web-sys`'s [console::log()](https://rustwasm.github.io/wasm-bindgen/api/web_sys/console/fn.log.html) function's ability to output coloured/styled text. `log("%c text that is red...

[`pretty-assertions`](https://github.com/colin-kiegel/rust-pretty-assertions) presents differences between characters by also making differing characters boldface (1), whereas `colored_diff::PrettyDifference` changes the background color behind those characters (2). The former is more readable and its readability...