We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5091ef8 + a916ef1 commit ed678dbCopy full SHA for ed678db
.changeset/bright-colts-kick.md
@@ -0,0 +1,5 @@
1
+---
2
+"md-to-react-email": patch
3
4
+
5
+Fix: replace quotes in custom styles with html hex code
src/utils.ts
@@ -5,7 +5,7 @@ import { styles } from "./styles";
6
function escapeQuotes(value: string) {
7
if (value.includes('"')) {
8
- return value.replace(/"/g, "'");
+ return value.replace(/"/g, "'");
9
}
10
return value;
11
0 commit comments