diff --git a/src/html/htmlcompare_cli.rs b/src/html/htmlcompare_cli.rs
index 4aca8782..35a136f4 100644
--- a/src/html/htmlcompare_cli.rs
+++ b/src/html/htmlcompare_cli.rs
@@ -17,7 +17,8 @@ fn parse(in_path: &Path) -> Result {
let mut input = String::new();
File::open(in_path)?.read_to_string(&mut input)?;
- let device = svd_parser::parse_with_config(&input, &Config::default().expand(true))?;
+ let device =
+ svd_parser::parse_with_config(&input, &Config::default().expand(true).ignore_enums(true))?;
let name = in_path
.file_stem()
.unwrap()