1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
//! [](https://travis-ci.com/kurtlawrence/cansi)
//! [](https://crates.io/crates/cansi)
//! [](https://docs.rs/cansi)
//! [](https://codecov.io/gh/kurtlawrence/cansi)
//!
//! # **C**atergorise **ANSI** - ANSI escape code parser and categoriser
//!
//! See the [rs docs.](https://docs.rs/cansi/)
//! Look at progress and contribute on [github.](https://github.com/kurtlawrence/cansi)
//!
//! `cansi` will parse text with ANSI escape sequences in it and return a deconstructed
//! text with metadata around the colouring and styling. `cansi` is only concerned
//! with `CSI` sequences, particuarly the `SGR` parameters. `cansi` will not construct
//! escaped text, there are crates such as [`colored`](https://crates.io/crates/colored)
//! that do a great job of colouring and styling text.
//!
//! # Example usage
//!
//! > This example was done using the `colored` crate to help with constructing the escaped
//! > text string. It will work with other tools that inject escape sequences into text strings (given they follow [ANSI specification](https://en.wikipedia.org/wiki/ANSI_escape_code)).
//!
//! ```rust
//! # use cansi::*;
//! # use colored::Colorize;
//! # use std::io::Write;
//! # colored::control::set_override(true);
//!
//! let v = &mut Vec::new();
//! write!(
//! v,
//! "Hello, {}{}{}{}{}{}",
//! "w".white().on_red(),
//! "o".cyan().on_green(),
//! "r".magenta().on_yellow(),
//! "l".blue().on_white(),
//! "d".yellow().on_bright_cyan(),
//! "!".bright_red().on_bright_yellow(),
//! )
//! .unwrap();
//!
//! let text = String::from_utf8_lossy(&v);
//! let result = categorise_text(&text); // cansi function
//!
//! assert_eq!(result.len(), 7); // there should be seven differently styled components
//!
//! assert_eq!("Hello, world!", &construct_text_no_codes(&result));
//!
//! // 'Hello, ' is just defaults
//! assert_eq!(
//! result[0],
//! CategorisedSlice {
//! text: "Hello, ",
//! start: 0,
//! end: 7,
//! fg_colour: Color::White,
//! bg_colour: Color::Black,
//! intensity: Intensity::Normal,
//! italic: false,
//! underline: false,
//! blink: false,
//! reversed: false,
//! hidden: false,
//! strikethrough: false
//! }
//! );
//!
//! // 'w' is coloured differently
//! assert_eq!(
//! result[1],
//! CategorisedSlice {
//! text: "w",
//! start: 15,
//! end: 16,
//! fg_colour: Color::White,
//! bg_colour: Color::Red,
//! intensity: Intensity::Normal,
//! italic: false,
//! underline: false,
//! blink: false,
//! reversed: false,
//! hidden: false,
//! strikethrough: false
//! }
//! );
//! ```
//!
//! ## Targeting no_std
//! This crate can use `alloc` in place of the standard library for no_std targets.
//! The standard library is enabled by default, so disabling default features and enabling the
//! `alloc` feature is required to use the crate this way.
//!
//! ```toml
//! [dependencies]
//! cansi = { version = "2.1.0", default-features = false, features = ["alloc"] }
//! ```
#![cfg_attr(not(feature = "std"), no_std)]
#![warn(missing_docs)]
#[cfg(feature = "alloc")]
extern crate alloc;
#[cfg(all(not(feature = "std"), feature = "alloc"))]
use alloc::string::String;
#[cfg(all(not(feature = "std"), feature = "alloc"))]
use alloc::vec::Vec;
mod categorise;
mod parsing;
#[cfg(test)]
mod tests;
#[allow(deprecated)]
pub use categorise::categorise_text;
pub use parsing::{parse, Match};
/// Type definition of the collection of `CategorisedSlice`s.
#[deprecated = "please use v3::CategorisedSlices to move to API v3.0. \
this function will be removed with v3.0 of cansi"]
#[allow(deprecated)]
pub type CategorisedSlices<'text> = Vec<CategorisedSlice<'text>>;
/// Constructs a string of the categorised text without the ANSI escape characters.
///
/// # Example
/// ```rust
/// use cansi::*;
/// let categorised = categorise_text("\x1b[30mH\x1b[31me\x1b[32ml\x1b[33ml\x1b[34mo");
/// assert_eq!("Hello", &construct_text_no_codes(&categorised));
/// ```
#[deprecated = "please use v3::construct_text_no_codes to move to API v3.0. \
this function will be removed with v3.0 of cansi"]
#[allow(deprecated)]
pub fn construct_text_no_codes(categorised_slices: &CategorisedSlices) -> String {
let x = categorised_slices.iter().cloned().map(Into::into).collect();
v3::construct_text_no_codes(&x)
}
/// Construct an iterator over each new line (`\n` or `\r\n`) and returns the categorised slices within those.
/// `CategorisedSlice`s that include a new line are split with the same style.
///
/// # Example
/// ```rust
/// # use colored::Colorize;
/// # use cansi::*;
/// # colored::control::set_override(true);
///
/// let s = format!("{}{}\nhow are you\r\ntoday", "hello, ".green(), "world".red());
/// let cat = categorise_text(&s);
/// let mut iter = line_iter(&cat);
///
/// let first = iter.next().unwrap();
/// assert_eq!(first[0].text, "hello, ");
/// assert_eq!(first[0].fg_colour, Color::Green);
///
/// assert_eq!(first[1].text, "world");
/// assert_eq!(first[1].fg_colour, Color::Red);
///
/// assert_eq!(&construct_text_no_codes(&iter.next().unwrap()), "how are you");
/// assert_eq!(&construct_text_no_codes(&iter.next().unwrap()), "today");
/// assert_eq!(iter.next(), None);
/// ```
#[deprecated = "please use v3::line_iter to move to API v3.0. \
this function will be removed with v3.0 of cansi"]
#[allow(deprecated)]
pub fn line_iter<'text, 'iter>(
categorised_slices: &'iter CategorisedSlices<'text>,
) -> CategorisedLineIterator<'text, 'iter> {
CategorisedLineIterator {
slices: categorised_slices,
idx: 0,
prev: None,
}
}
/// An iterator structure for `CategorisedSlices`, iterating over each new line (`\n` or `\r\n`) and returns the categorised slices within those.
/// `CategorisedSlice`s that include a new line are split with the same style.
///
/// # Example
/// ```rust
/// # use colored::Colorize;
/// # colored::control::set_override(true);
/// # use cansi::*;
///
/// let s = format!("{}{}\nhow are you\r\ntoday", "hello, ".green(), "world".red());
/// let cat = categorise_text(&s);
/// let mut iter = line_iter(&cat);
///
/// let first = iter.next().unwrap();
/// assert_eq!(first[0].text, "hello, ");
/// assert_eq!(first[0].fg_colour, Color::Green);
///
/// assert_eq!(first[1].text, "world");
/// assert_eq!(first[1].fg_colour, Color::Red);
///
/// assert_eq!(&construct_text_no_codes(&iter.next().unwrap()), "how are you");
/// assert_eq!(&construct_text_no_codes(&iter.next().unwrap()), "today");
/// assert_eq!(iter.next(), None);
/// ```
#[deprecated = "please use v3::CategorisedLineIterator to move to API v3.0. \
this function will be removed with v3.0 of cansi"]
#[allow(deprecated)]
pub struct CategorisedLineIterator<'text, 'iter> {
slices: &'iter CategorisedSlices<'text>,
idx: usize,
prev: Option<CategorisedSlice<'text>>,
}
/// The item type of `CategorisedLineIterator`.
///
/// # Note
/// > The type alias is the same as `CategorisedSlices`, so functions such as `construct_text_no_codes` will work.
#[deprecated = "please use v3::CategorisedLine to move to API v3.0. \
this function will be removed with v3.0 of cansi"]
#[allow(deprecated)]
pub type CategorisedLine<'text> = Vec<CategorisedSlice<'text>>;
#[allow(deprecated)]
impl<'text, 'iter> Iterator for CategorisedLineIterator<'text, 'iter> {
type Item = CategorisedLine<'text>;
fn next(&mut self) -> Option<Self::Item> {
let mut v = Vec::new();
if let Some(prev) = &self.prev {
// need to test splitting this, might be more new lines in remainder
let (first, remainder) = split_on_new_line(prev.text);
// push first slice on -- only if not empty
// if first.len() == 0 it is because there is a sequence of new lines
v.push(prev.clone_style(&prev.text[..first], prev.start, prev.start + first));
if let Some(remainder) = remainder {
// there is a remainder, which means that a new line was hit
self.prev = Some(prev.clone_style(
&prev.text[remainder..],
prev.start + remainder,
prev.end,
));
return Some(v); // exit early
}
self.prev = None; // consumed prev
}
while let Some(slice) = self.slices.get(self.idx) {
self.idx += 1; // increment to next slice, always happens as well split this slice.
let (first, remainder) = split_on_new_line(slice.text);
// push first slice on -- only if not empty
if first > 0 || v.is_empty() {
v.push(slice.clone_style(&slice.text[..first], slice.start, slice.start + first));
}
if let Some(remainder) = remainder {
// there is a remainder, which means that a new line was hit
if !slice.text[remainder..].is_empty() {
// not just a trailing new line.
self.prev = Some(slice.clone_style(
&slice.text[remainder..],
slice.start + remainder,
slice.end,
));
}
break; // exit looping
}
}
if v.is_empty() && self.idx >= self.slices.len() {
None // stop iterating if no slices were met and the index is above the slices len
} else {
Some(v)
}
}
}
/// Splits on the first instance of `\r\n` or `\n` bytes.
/// Returns the _exclusive_ end of the first componenet, and the _inclusive_ start of the remaining items if there is a split.
/// Can return an empty remainder slice (if terminated with a new line). Can return empty first slice (say `"\nHello"`);
fn split_on_new_line(txt: &str) -> (usize, Option<usize>) {
let cr = txt.find('\r');
let nl = txt.find('\n');
match (cr, nl) {
(None, None) => (txt.len(), None),
(Some(_), None) => (txt.len(), None), // special case, no new line but cr
(None, Some(nl)) => (nl, Some(nl + 1)),
(Some(cr), Some(nl)) => {
if nl.saturating_sub(1) == cr {
(cr, Some(nl + 1))
} else {
(nl, Some(nl + 1))
}
}
}
}
/// Data structure that holds information about colouring and styling of a text slice.
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
#[deprecated = "please use v3::CategorisedSlice to move to API v3.0. \
this function will be removed with v3.0 of cansi"]
pub struct CategorisedSlice<'text> {
/// The text slice.
pub text: &'text str,
/// _Inclusive_ starting byte position.
pub start: usize,
/// _Exclusive_ ending byte position.
pub end: usize,
/// The foreground (or text) colour.
pub fg_colour: Color,
/// The background colour.
pub bg_colour: Color,
/// The emphasis state (bold, faint, normal).
pub intensity: Intensity,
/// Italicised.
pub italic: bool,
/// Underlined.
pub underline: bool,
/// Slow blink text.
pub blink: bool,
/// Inverted colours. See [https://en.wikipedia.org/wiki/Reverse_video](https://en.wikipedia.org/wiki/Reverse_video).
pub reversed: bool,
/// Invisible text.
pub hidden: bool,
/// Struck-through.
pub strikethrough: bool,
}
#[allow(deprecated)]
impl<'text> CategorisedSlice<'text> {
const fn clone_style(&self, text: &'text str, start: usize, end: usize) -> Self {
let mut c = *self;
c.text = text;
c.start = start;
c.end = end;
c
}
#[cfg(test)]
fn default_style(text: &'text str, start: usize, end: usize) -> Self {
v3::CategorisedSlice::with_sgr(SGR::default(), text, start, end).into()
}
}
/// Populates with defaults.
#[allow(deprecated)]
impl<'a> From<v3::CategorisedSlice<'a>> for CategorisedSlice<'a> {
fn from(x: v3::CategorisedSlice<'a>) -> Self {
let v3::CategorisedSlice {
text,
start,
end,
fg,
bg,
intensity,
italic,
underline,
blink,
reversed,
hidden,
strikethrough,
} = x;
Self {
text,
start,
end,
fg_colour: fg.unwrap_or(Color::White),
bg_colour: bg.unwrap_or(Color::Black),
intensity: intensity.unwrap_or(Intensity::Normal),
italic: italic.unwrap_or_default(),
underline: underline.unwrap_or_default(),
blink: blink.unwrap_or_default(),
reversed: reversed.unwrap_or_default(),
hidden: hidden.unwrap_or_default(),
strikethrough: strikethrough.unwrap_or_default(),
}
}
}
#[allow(deprecated)]
impl<'a> From<CategorisedSlice<'a>> for v3::CategorisedSlice<'a> {
fn from(x: CategorisedSlice<'a>) -> Self {
let CategorisedSlice {
text,
start,
end,
fg_colour,
bg_colour,
intensity,
italic,
underline,
blink,
reversed,
hidden,
strikethrough,
} = x;
Self {
text,
start,
end,
fg: Some(fg_colour),
bg: Some(bg_colour),
intensity: Some(intensity),
italic: Some(italic),
underline: Some(underline),
blink: Some(blink),
reversed: Some(reversed),
hidden: Some(hidden),
strikethrough: Some(strikethrough),
}
}
}
/// The formatting components `SGR (Select Graphic Rendition)`.
/// [spec](https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_(Select_Graphic_Rendition)_parameters)
#[derive(Clone, Copy, Default)]
#[allow(clippy::upper_case_acronyms)]
struct SGR {
fg: Option<Color>,
bg: Option<Color>,
intensity: Option<Intensity>,
italic: Option<bool>,
underline: Option<bool>,
blink: Option<bool>,
reversed: Option<bool>,
hidden: Option<bool>,
strikethrough: Option<bool>,
}
/// The emphasis (bold, faint) states.
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum Intensity {
/// Normal intensity (no emphasis).
Normal,
/// Bold.
Bold,
/// Faint.
Faint,
}
/// The 8 standard colors.
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[allow(missing_docs)]
pub enum Color {
Black,
Red,
Green,
Yellow,
Blue,
Magenta,
Cyan,
White,
BrightBlack,
BrightRed,
BrightGreen,
BrightYellow,
BrightBlue,
BrightMagenta,
BrightCyan,
BrightWhite,
}
/// Update API for version 3.0 of the crate.
///
/// To start using v3, import the items with `cansi::v3::*`. This way, moving to version 3.0 will
/// only require a change in import code.
/// Note that version 3.0 will remove the deprecated version 2.0 items.
pub mod v3 {
use super::{split_on_new_line, SGR};
pub use crate::{Color, Intensity};
pub use super::categorise::categorise_text_v3 as categorise_text;
/// Data structure that holds information about colouring and styling of a text slice.
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub struct CategorisedSlice<'text> {
/// The text slice.
pub text: &'text str,
/// _Inclusive_ starting byte position.
pub start: usize,
/// _Exclusive_ ending byte position.
pub end: usize,
/// The foreground (or text) colour.
pub fg: Option<Color>,
/// The background colour.
pub bg: Option<Color>,
/// The emphasis state (bold, faint, normal).
pub intensity: Option<Intensity>,
/// Italicised.
pub italic: Option<bool>,
/// Underlined.
pub underline: Option<bool>,
/// Slow blink text.
pub blink: Option<bool>,
/// Inverted colours. See [https://en.wikipedia.org/wiki/Reverse_video](https://en.wikipedia.org/wiki/Reverse_video).
pub reversed: Option<bool>,
/// Invisible text.
pub hidden: Option<bool>,
/// Struck-through.
pub strikethrough: Option<bool>,
}
impl<'text> CategorisedSlice<'text> {
pub(crate) const fn with_sgr(sgr: SGR, text: &'text str, start: usize, end: usize) -> Self {
let SGR {
fg,
bg,
intensity,
italic,
underline,
blink,
reversed,
hidden,
strikethrough,
} = sgr;
Self {
text,
start,
end,
fg,
bg,
intensity,
italic,
underline,
blink,
reversed,
hidden,
strikethrough,
}
}
const fn clone_style(&self, text: &'text str, start: usize, end: usize) -> Self {
let mut c = *self;
c.text = text;
c.start = start;
c.end = end;
c
}
#[cfg(test)]
fn default_style(text: &'text str, start: usize, end: usize) -> Self {
Self::with_sgr(SGR::default(), text, start, end)
}
}
/// Type definition of the collection of `CategorisedSlice`s.
pub type CategorisedSlices<'text> = Vec<CategorisedSlice<'text>>;
/// The item type of `CategorisedLineIterator`.
///
/// # Note
/// > The type alias is the same as `CategorisedSlices`, so functions such as `construct_text_no_codes` will work.
pub type CategorisedLine<'text> = Vec<CategorisedSlice<'text>>;
/// Construct an iterator over each new line (`\n` or `\r\n`) and returns the categorised slices within those.
/// `CategorisedSlice`s that include a new line are split with the same style.
///
/// # Example
/// ```rust
/// # use colored::Colorize;
/// # use cansi::v3::*;
/// # colored::control::set_override(true);
///
/// let s = format!("{}{}\nhow are you\r\ntoday", "hello, ".green(), "world".red());
/// let cat = categorise_text(&s);
/// let mut iter = line_iter(&cat);
///
/// let first = iter.next().unwrap();
/// assert_eq!(first[0].text, "hello, ");
/// assert_eq!(first[0].fg, Some(Color::Green));
///
/// assert_eq!(first[1].text, "world");
/// assert_eq!(first[1].fg, Some(Color::Red));
///
/// assert_eq!(&construct_text_no_codes(&iter.next().unwrap()), "how are you");
/// assert_eq!(&construct_text_no_codes(&iter.next().unwrap()), "today");
/// assert_eq!(iter.next(), None);
/// ```
pub fn line_iter<'text, 'iter>(
categorised_slices: &'iter CategorisedSlices<'text>,
) -> CategorisedLineIterator<'text, 'iter> {
CategorisedLineIterator {
slices: categorised_slices,
idx: 0,
prev: None,
}
}
/// An iterator structure for `CategorisedSlices`, iterating over each new line (`\n` or `\r\n`) and returns the categorised slices within those.
/// `CategorisedSlice`s that include a new line are split with the same style.
///
/// # Example
/// ```rust
/// # use colored::Colorize;
/// # colored::control::set_override(true);
/// # use cansi::v3::*;
///
/// let s = format!("{}{}\nhow are you\r\ntoday", "hello, ".green(), "world".red());
/// let cat = categorise_text(&s);
/// let mut iter = line_iter(&cat);
///
/// let first = iter.next().unwrap();
/// assert_eq!(first[0].text, "hello, ");
/// assert_eq!(first[0].fg, Some(Color::Green));
///
/// assert_eq!(first[1].text, "world");
/// assert_eq!(first[1].fg, Some(Color::Red));
///
/// assert_eq!(&construct_text_no_codes(&iter.next().unwrap()), "how are you");
/// assert_eq!(&construct_text_no_codes(&iter.next().unwrap()), "today");
/// assert_eq!(iter.next(), None);
/// ```
pub struct CategorisedLineIterator<'text, 'iter> {
slices: &'iter CategorisedSlices<'text>,
idx: usize,
prev: Option<CategorisedSlice<'text>>,
}
impl<'text, 'iter> Iterator for CategorisedLineIterator<'text, 'iter> {
type Item = CategorisedLine<'text>;
fn next(&mut self) -> Option<Self::Item> {
let mut v = Vec::new();
if let Some(prev) = &self.prev {
// need to test splitting this, might be more new lines in remainder
let (first, remainder) = split_on_new_line(prev.text);
// push first slice on -- only if not empty
// if first.len() == 0 it is because there is a sequence of new lines
v.push(prev.clone_style(&prev.text[..first], prev.start, prev.start + first));
if let Some(remainder) = remainder {
// there is a remainder, which means that a new line was hit
self.prev = Some(prev.clone_style(
&prev.text[remainder..],
prev.start + remainder,
prev.end,
));
return Some(v); // exit early
}
self.prev = None; // consumed prev
}
while let Some(slice) = self.slices.get(self.idx) {
self.idx += 1; // increment to next slice, always happens as well split this slice.
let (first, remainder) = split_on_new_line(slice.text);
// push first slice on -- only if not empty
if first > 0 || v.is_empty() {
v.push(slice.clone_style(
&slice.text[..first],
slice.start,
slice.start + first,
));
}
if let Some(remainder) = remainder {
// there is a remainder, which means that a new line was hit
if !slice.text[remainder..].is_empty() {
// not just a trailing new line.
self.prev = Some(slice.clone_style(
&slice.text[remainder..],
slice.start + remainder,
slice.end,
));
}
break; // exit looping
}
}
if v.is_empty() && self.idx >= self.slices.len() {
None // stop iterating if no slices were met and the index is above the slices len
} else {
Some(v)
}
}
}
/// Constructs a string of the categorised text without the ANSI escape characters.
///
/// # Example
/// ```rust
/// use cansi::v3::*;
/// let categorised = categorise_text("\x1b[30mH\x1b[31me\x1b[32ml\x1b[33ml\x1b[34mo");
/// assert_eq!("Hello", &construct_text_no_codes(&categorised));
/// ```
pub fn construct_text_no_codes(categorised_slices: &CategorisedSlices) -> String {
let slices = categorised_slices;
let mut s = String::with_capacity(
categorised_slices
.iter()
.map(|x| x.text.len())
.sum::<usize>(),
);
for sl in slices {
s.push_str(sl.text);
}
s
}
}