Skip to content

Commit

Permalink
fix: emit underline attribute in color schemes
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcur committed Jul 17, 2024
1 parent 8b5624f commit 9ec4f1a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ impl Highlight<'_> {
.into_iter()
.map(|_| "bold")
.chain(self.italic.into_iter().map(|_| "italic"))
.chain(self.underline.into_iter().map(|_| "underline"))
.chain(self.undercurl.into_iter().map(|_| "undercurl"))
.chain(self.underdouble.into_iter().map(|_| "underdouble"))
.chain(self.underdashed.into_iter().map(|_| "underdashed"))
Expand Down

0 comments on commit 9ec4f1a

Please sign in to comment.