Rustfmt for 2024

This commit is contained in:
Eric Huss
2025-07-21 10:31:41 -07:00
parent d5a505e0c6
commit c7b67e363b
18 changed files with 162 additions and 103 deletions

View File

@@ -1,10 +1,10 @@
//! This is a demonstration of an mdBook preprocessor which parses markdown
//! and removes any instances of emphasis.
use mdbook::BookItem;
use mdbook::book::{Book, Chapter};
use mdbook::errors::Error;
use mdbook::preprocess::{CmdPreprocessor, Preprocessor, PreprocessorContext};
use mdbook::BookItem;
use pulldown_cmark::{Event, Parser, Tag, TagEnd};
use std::io;