Merge pull request #541 from epage/thead

fix(config): Don't correct thead in css as well
This commit is contained in:
Ed Page 2022-08-25 06:36:17 -05:00 committed by GitHub
commit 8390608a3e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -179,6 +179,20 @@ impl TypeEngineConfig {
..Default::default()
},
});
patterns
.entry("css".into())
.or_insert_with(|| GlobEngineConfig {
extend_glob: Vec::new(),
engine: EngineConfig {
dict: Some(DictConfig {
extend_identifiers: maplit::hashmap! {
"thead".into() => "thead".into(),
},
..Default::default()
}),
..Default::default()
},
});
patterns
.entry("html".into())
.or_insert_with(|| GlobEngineConfig {