Skip to content

Commit

Permalink
Merge pull request #541 from epage/thead
Browse files Browse the repository at this point in the history
fix(config): Don't correct thead in css as well
  • Loading branch information
epage committed Aug 25, 2022
2 parents 0612303 + 599f3d4 commit 8390608
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 8390608

Please sign in to comment.