fix: Resolve clippy field_reassign_with_default warning

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Abimael Martell
2026-02-17 09:19:44 -08:00
co-authored by Claude Opus 4.6
parent 350bbc0086
commit 9ab3d23350
+4 -2
View File
@@ -90,8 +90,10 @@ fn main() {
.filter(|a| !a.starts_with("--"))
.map(|s| s.as_str());
let mut md_options = MarkdownOptions::default();
md_options.include_page_numbers = page_numbers;
let md_options = MarkdownOptions {
include_page_numbers: page_numbers,
..Default::default()
};
match process_pdf_with_config_pages(
pdf_path,