1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-02 03:12:25 +01:00

Update examples

This commit is contained in:
Ethan P
2020-05-16 15:16:51 -07:00
committed by David Peter
parent 0f06d3b90d
commit 3eb704e016
2 changed files with 21 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
/// A program that serializes a Rust structure to YAML and pretty-prints the result
use bat::PrettyPrinter;
use bat::{Input, PrettyPrinter};
use serde::Serialize;
#[derive(Serialize)]
@@ -29,7 +29,7 @@ fn main() {
.line_numbers(true)
.grid(true)
.header(true)
.input_from_bytes_with_name(&bytes, "person.yaml")
.input(Input::from_bytes(&bytes).name("person.yaml").kind("File"))
.print()
.unwrap();
}