mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-23 05:14:27 +01:00
Make the example show highlighted areas more explicitly
This commit is contained in:
parent
85bf5d113c
commit
7541172d12
@ -217,7 +217,11 @@ fn display_highlights(text: &str, ranges: &[usize]) -> io::Result<()> {
|
|||||||
_ => unreachable!(),
|
_ => unreachable!(),
|
||||||
};
|
};
|
||||||
if highlighted {
|
if highlighted {
|
||||||
stdout.set_color(ColorSpec::new().set_fg(Some(Color::Yellow)))?;
|
stdout.set_color(
|
||||||
|
ColorSpec::new()
|
||||||
|
.set_fg(Some(Color::Yellow))
|
||||||
|
.set_underline(true),
|
||||||
|
)?;
|
||||||
}
|
}
|
||||||
write!(&mut stdout, "{}", &text[start..end])?;
|
write!(&mut stdout, "{}", &text[start..end])?;
|
||||||
stdout.reset()?;
|
stdout.reset()?;
|
||||||
|
Loading…
Reference in New Issue
Block a user